Lines Matching refs:readp
75 unsigned char *readp = startp; in get_offsets() local
76 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size; in get_offsets()
78 while (readp + 14 < endp) in get_offsets()
99 Dwarf_Off len = read_4ubyte_unaligned_inc (dbg, readp); in get_offsets()
102 len = read_8ubyte_unaligned_inc (dbg, readp); in get_offsets()
114 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp; in get_offsets()
122 uint16_t version = read_2ubyte_unaligned (dbg, readp); in get_offsets()
131 mem[cnt].cu_offset = read_4ubyte_unaligned (dbg, readp + 2); in get_offsets()
133 mem[cnt].cu_offset = read_8ubyte_unaligned (dbg, readp + 2); in get_offsets()
153 readp += len; in get_offsets()
217 unsigned char *readp = startp + offset; local
229 gl.die_offset = read_4ubyte_unaligned_inc (dbg, readp);
231 gl.die_offset = read_8ubyte_unaligned_inc (dbg, readp);
240 gl.name = (char *) readp;
241 readp = (unsigned char *) rawmemchr (gl.name, '\0') + 1;
248 return readp - startp;
257 readp = startp + dbg->pubnames_sets[cnt].set_start;