Lines Matching refs:readp
145 const unsigned char *readp, in get_table_for_offset() argument
149 const unsigned char *startp = readp; in get_table_for_offset()
152 if (readp + 3 > endp) in get_table_for_offset()
159 uint16_t version = read_2ubyte_unaligned_inc (dbg, readp); in get_table_for_offset()
166 uint8_t flags = *readp++; in get_table_for_offset()
172 line_offset = read_addr_unaligned_inc (is_64bit ? 8 : 4, dbg, readp); in get_table_for_offset()
173 if (readp > endp) in get_table_for_offset()
212 unsigned count = *readp++; in get_table_for_offset()
215 unsigned opcode = *readp++; in get_table_for_offset()
218 if (readp >= endp) in get_table_for_offset()
220 get_uleb128 (e.nforms, readp, endp); in get_table_for_offset()
221 e.forms = readp; in get_table_for_offset()
224 readp += e.nforms; in get_table_for_offset()
225 if (readp > endp) in get_table_for_offset()
253 .header_len = readp - startp, in get_table_for_offset()
327 const unsigned char *readp = startp + offset; in read_macros() local
329 while (readp < endp) in read_macros()
331 unsigned int opcode = *readp++; in read_macros()
372 attributes[i].valp = (void *) readp; in read_macros()
375 size_t len = __libdw_form_val_len (&fake_cu, proto->forms[i], readp); in read_macros()
379 readp += len; in read_macros()
389 return readp - startp; in read_macros()