Home | History | Annotate | Download | only in libdw

Lines Matching full:readp

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