Lines Matching refs:offset
26 uint32_t offset = Offset;
28 if (debug_info_data.isValidOffset(offset)) {
29 uint64_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;
216 uint32_t offset = *offset_ptr;
217 if ((offset < cu_end_offset) && debug_info_data.isValidOffset(offset)) {
218 Offset = offset;
220 uint64_t abbrCode = debug_info_data.getULEB128(&offset);
241 if (form_value.extractValue(debug_info_data, &offset, cu)) {
255 form_size = debug_info_data.getULEB128(&offset);
258 form_size = debug_info_data.getU8(&offset);
261 form_size = debug_info_data.getU16(&offset);
264 form_size = debug_info_data.getU32(&offset);
269 debug_info_data.getCStr(&offset);
311 debug_info_data.getULEB128(&offset);
315 form = debug_info_data.getULEB128(&offset);
320 *offset_ptr = offset;
324 offset += form_size;
328 *offset_ptr = offset;
333 *offset_ptr = offset;
351 uint32_t offset = getOffset();
356 debug_info_data.getULEB128(&offset);
361 debug_info_data, &offset, cu);
363 const uint32_t attr_offset = offset;
365 if (form_value.extractValue(debug_info_data, &offset, cu)) {
367 *end_attr_offset_ptr = offset;