HomeSort by relevance Sort by last modified time
    Searched refs:phentsize (Results 1 - 4 of 4) sorted by null

  /external/elfutils/0.153/libdwfl/
elf-from-memory.c 134 uint_fast16_t phentsize; local
149 phentsize = ehdr.e32.e_phentsize;
150 if (phentsize != sizeof (Elf32_Phdr) || phnum == 0)
161 phentsize = ehdr.e64.e_phentsize;
162 if (phentsize != sizeof (Elf64_Phdr) || phnum == 0)
176 xlatefrom.d_size = phnum * phentsize;
178 if ((size_t) nread >= phoff + phnum * phentsize)
185 if (initial_bufsize < phnum * phentsize)
187 unsigned char *newbuf = realloc (buffer, phnum * phentsize);
196 phnum * phentsize, phnum * phentsize)
    [all...]
dwfl_segment_report_module.c 186 uint_fast16_t phentsize; local
210 phentsize = ehdr.e32.e_phentsize;
211 if (phentsize != sizeof (Elf32_Phdr))
223 phentsize = ehdr.e64.e_phentsize;
224 if (phentsize != sizeof (Elf64_Phdr))
241 xlatefrom.d_size = phnum * phentsize;
398 && likely (filesz_offset >= phoff + phnum * phentsize))