Searched defs:shdrs_end (Results 1 - 3 of 3) sorted by relevance

/external/elfutils/libdwfl/
H A Delf-from-memory.c125 GElf_Off shdrs_end; local
142 shdrs_end = ehdr.e32.e_shoff + ehdr.e32.e_shnum * ehdr.e32.e_shentsize;
154 shdrs_end = ehdr.e64.e_shoff + ehdr.e64.e_shnum * ehdr.e64.e_shentsize;
282 && (GElf_Off) contents_size >= shdrs_end
286 if ((GElf_Off) contents_size < shdrs_end)
287 contents_size = shdrs_end;
328 if (contents_size < shdrs_end)
355 if (contents_size < shdrs_end)
H A Drelocate.c555 GElf_Off shdrs_end = shdrs_start + shnums * shentsize; local
557 && shdr->sh_offset < shdrs_end)
559 && tshdr->sh_offset < shdrs_end)))
H A Ddwfl_segment_report_module.c344 GElf_Off shdrs_end; local
373 shdrs_end = ehdr.e32.e_shoff + ehdr.e32.e_shnum * ehdr.e32.e_shentsize;
386 shdrs_end = ehdr.e64.e_shoff + ehdr.e64.e_shnum * ehdr.e64.e_shentsize;
544 if (shdrs_end <= filesz_offset && shdrs_end > file_trimmed_end)
546 filesz += shdrs_end - file_trimmed_end;
547 file_trimmed_end = shdrs_end;
867 const GElf_Off whole = MAX (file_trimmed_end, shdrs_end);

Completed in 122 milliseconds