Home
last modified time | relevance | path

Searched refs:readendp (Results 1 – 6 of 6) sorted by relevance

/external/elfutils/libdw/
Ddwarf_getaranges.c86 const unsigned char *readendp in dwarf_getaranges() local
89 while (readp < readendp) in dwarf_getaranges()
110 if (unlikely (readp + 4 > readendp)) in dwarf_getaranges()
117 if (unlikely (readp + 8 > readendp)) in dwarf_getaranges()
127 if (unlikely (readp + 2 > readendp)) in dwarf_getaranges()
152 if (readp + 2 > readendp) in dwarf_getaranges()
177 if (readp + address_size > readendp) in dwarf_getaranges()
Ddwarf_getlocation.c806 const unsigned char *readendp = locs->d_buf + locs->d_size; in getlocations_addr() local
813 &readp, readendp, in getlocations_addr()
831 if (readendp - readp < 2) in getlocations_addr()
841 if (readendp - readp < 1) in getlocations_addr()
843 get_uleb128 (block.length, readp, readendp); in getlocations_addr()
846 if (readendp - readp < (ptrdiff_t) block.length) in getlocations_addr()
Ddwarf_ranges.c503 const unsigned char *readendp; in dwarf_ranges() local
532 readendp = d->d_buf + d->d_size; in dwarf_ranges()
539 &readp, readendp, in dwarf_ranges()
DlibdwP.h1056 const unsigned char *readendp; in str_offsets_base_off() local
1058 readendp = (const unsigned char *) data->d_buf + data->d_size; in str_offsets_base_off()
1066 if (unlikely (readendp - readp < 8)) in str_offsets_base_off()
1077 if (readendp - readp < 4 in str_offsets_base_off()
1079 || (uint64_t) (readendp - readp) < unit_length) in str_offsets_base_off()
/external/elfutils/src/
Dreadelf.c5110 const unsigned char *readendp = ((const unsigned char *) data->d_buf in print_debug_addr_section() local
5113 while (readp < readendp) in print_debug_addr_section()
5141 next_unitp = readendp; in print_debug_addr_section()
5163 next_unitp = readendp; in print_debug_addr_section()
5172 next_unitp = readendp; in print_debug_addr_section()
5193 next_unitp = readendp; in print_debug_addr_section()
5215 if (unlikely (readp > readendp - 8)) in print_debug_addr_section()
5231 if (readp > readendp - 4 in print_debug_addr_section()
5233 || unit_length > (uint64_t) (readendp - readp)) in print_debug_addr_section()
5402 const unsigned char *readendp = readp + data->d_size; in print_debug_aranges_section() local
[all …]
DChangeLog298 * readelf.c (print_form_data): Don't reuse readp and readendp when