Lines Matching full:nf
231 const NoteFuncDesc *nf; in s390x_write_elf64_notes() local
237 for (nf = funcs; nf->note_contents_func; nf++) { in s390x_write_elf64_notes()
238 if (nf->pvonly && !s390_is_pv()) { in s390x_write_elf64_notes()
242 content_size = nf->note_size_func ? nf->note_size_func() : nf->contents_size; in s390x_write_elf64_notes()
259 (*nf->note_contents_func)(notep, cpu, id); in s390x_write_elf64_notes()
477 const NoteFuncDesc *nf; in cpu_get_note_size() local
484 for (nf = note_core; nf->note_contents_func; nf++) { in cpu_get_note_size()
485 elf_note_size = elf_note_size + note_head_size + name_size + nf->contents_size; in cpu_get_note_size()
487 for (nf = note_linux; nf->note_contents_func; nf++) { in cpu_get_note_size()
488 if (nf->pvonly && !s390_is_pv()) { in cpu_get_note_size()
491 content_size = nf->contents_size ? nf->contents_size : nf->note_size_func(); in cpu_get_note_size()