Home | History | Annotate | Download | only in libdw

Lines Matching defs:readp

107   const char *readp
109 const char *readendp = readp + dbg->sectiondata[IDX_debug_aranges]->d_size;
111 while (readp < readendp)
113 const char *hdrstart = readp;
132 Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp);
136 length = read_8ubyte_unaligned_inc (dbg, readp);
143 unsigned int version = read_2ubyte_unaligned_inc (dbg, readp);
153 offset = read_4ubyte_unaligned_inc (dbg, readp);
155 offset = read_8ubyte_unaligned_inc (dbg, readp);
161 unsigned int address_size = *readp++;
167 (void) *readp++;
170 readp += ((2 * address_size - ((readp - hdrstart) % (2 * address_size)))
180 range_address = read_4ubyte_unaligned_inc (dbg, readp);
181 range_length = read_4ubyte_unaligned_inc (dbg, readp);
185 range_address = read_8ubyte_unaligned_inc (dbg, readp);
186 range_length = read_8ubyte_unaligned_inc (dbg, readp);