Home
last modified time | relevance | path

Searched refs:note_start (Results 1 – 2 of 2) sorted by relevance

/dflybsd-src/libexec/rtld-elf/
H A Dmap_object.c88 Elf_Addr note_start; in map_object() local
114 note_start = 0; in map_object()
160 note_start = (Elf_Addr)(char *)hdr + phdr->p_offset; 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 Drtld.c1337 Elf_Addr note_start, note_end; in digest_phdr() local
1396 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in digest_phdr()
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()