Searched refs:note_end (Results 1 – 3 of 3) sorted by relevance
/dflybsd-src/libexec/rtld-elf/ |
H A D | map_object.c | 89 Elf_Addr note_end; in map_object() local 115 note_end = 0; in map_object() 161 note_end = note_start + phdr->p_filesz; in map_object() 323 if (note_start < note_end) in map_object() 324 digest_notes(obj, note_start, note_end); in map_object()
|
H A D | rtld.c | 1337 Elf_Addr note_start, note_end; in digest_phdr() local 1397 note_end = note_start + ph->p_filesz; in digest_phdr() 1398 digest_notes(obj, note_start, note_end); in digest_phdr() 1412 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end) in digest_notes() argument 1418 for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end; in digest_notes()
|
/dflybsd-src/sys/kern/ |
H A D | imgact_elf.c | 1726 const Elf_Note *note, *note0, *note_end; in check_PT_NOTE() local 1745 note_end = (const Elf_Note *)(imgp->image_header + endbyte); in check_PT_NOTE() 1769 note_end = (const Elf_Note *)(data + notesz); in check_PT_NOTE() 1772 note_end = (const Elf_Note *)(page + firstloc + in check_PT_NOTE() 1777 for (n = 0; n < 100 && note >= note0 && note < note_end; n++) { in check_PT_NOTE() 1780 if (note_overflow(note, (const char *)note_end - in check_PT_NOTE()
|