Home
last modified time | relevance | path

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

/dragonfly/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.c1335 Elf_Addr note_start, note_end; in digest_phdr() local
1394 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in digest_phdr()
1395 note_end = note_start + ph->p_filesz; in digest_phdr()
1396 digest_notes(obj, note_start, note_end); in digest_phdr()
1410 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end) in digest_notes() argument
1416 for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end; in digest_notes()