Lines Matching refs:offset
26 uint32_t offset = Offset;
28 if (debug_info_data.isValidOffset(offset)) {
29 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
31 OS << format("\n0x%8.8x: ", Offset);
47 dumpAttribute(OS, cu, &offset, attr, form, indent);
99 Offset = *offset_ptr;
107 uint32_t offset = *offset_ptr;
120 offset += fixed_skip_size;
130 form_size = debug_info_data.getULEB128(&offset);
133 form_size = debug_info_data.getU8(&offset);
136 form_size = debug_info_data.getU16(&offset);
139 form_size = debug_info_data.getU32(&offset);
144 debug_info_data.getCStr(&offset);
183 debug_info_data.getULEB128(&offset);
188 form = debug_info_data.getULEB128(&offset);
192 *offset_ptr = Offset;
195 offset += form_size;
200 *offset_ptr = offset;
214 uint32_t offset = *offset_ptr;
215 if ((offset < cu_end_offset) && debug_info_data.isValidOffset(offset)) {
216 Offset = offset;
218 uint64_t abbrCode = debug_info_data.getULEB128(&offset);
239 if (form_value.extractValue(debug_info_data, &offset, cu)) {
253 form_size = debug_info_data.getULEB128(&offset);
256 form_size = debug_info_data.getU8(&offset);
259 form_size = debug_info_data.getU16(&offset);
262 form_size = debug_info_data.getU32(&offset);
267 debug_info_data.getCStr(&offset);
309 debug_info_data.getULEB128(&offset);
313 form = debug_info_data.getULEB128(&offset);
318 *offset_ptr = offset;
322 offset += form_size;
326 *offset_ptr = offset;
331 *offset_ptr = offset;
349 uint32_t offset = getOffset();
354 debug_info_data.getULEB128(&offset);
359 debug_info_data, &offset, cu);
361 const uint32_t attr_offset = offset;
363 if (form_value.extractValue(debug_info_data, &offset, cu)) {
365 *end_attr_offset_ptr = offset;