Lines Matching defs:offset_ptr
32 lldb::offset_t *offset_ptr) {
48 data.GetMaxU64(offset_ptr, DWARFUnit::GetAddressByteSize(m_unit));
51 m_value.uval = data.GetU8(offset_ptr);
55 m_value.uval = data.GetU16(offset_ptr);
59 m_value.uval = data.GetU32(offset_ptr);
68 m_value.uval = data.GetULEB128(offset_ptr);
72 m_value.cstr = data.GetCStr(offset_ptr);
75 m_value.sval = data.GetSLEB128(offset_ptr);
80 m_value.uval = data.GetMaxU64(offset_ptr, 4);
87 m_value.uval = data.GetU8(offset_ptr);
93 m_value.uval = data.GetU16(offset_ptr);
97 m_value.uval = data.GetMaxU64(offset_ptr, 3);
103 m_value.uval = data.GetU32(offset_ptr);
108 m_value.uval = data.GetU64(offset_ptr);
118 m_value.uval = data.GetULEB128(offset_ptr);
126 m_value.uval = data.GetMaxU64(offset_ptr, ref_addr_size);
129 m_form = static_cast<dw_form_t>(data.GetULEB128(offset_ptr));
141 m_value.data = data.PeekData(*offset_ptr, m_value.uval);
143 *offset_ptr += m_value.uval;
204 lldb::offset_t *offset_ptr) const {
205 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, m_unit);
210 lldb::offset_t *offset_ptr,
218 uint64_t size = debug_info_data.GetULEB128(offset_ptr);
219 *offset_ptr += size;
223 uint8_t size = debug_info_data.GetU8(offset_ptr);
224 *offset_ptr += size;
228 uint16_t size = debug_info_data.GetU16(offset_ptr);
229 *offset_ptr += size;
233 uint32_t size = debug_info_data.GetU32(offset_ptr);
234 *offset_ptr += size;
240 debug_info_data.GetCStr(offset_ptr);
245 *offset_ptr += DWARFUnit::GetAddressByteSize(unit);
256 *offset_ptr += ref_addr_size;
270 *offset_ptr += 1;
278 *offset_ptr += 2;
284 *offset_ptr += 3;
291 *offset_ptr += 4;
299 *offset_ptr += 4;
306 *offset_ptr += 8;
311 *offset_ptr += 16;
324 debug_info_data.Skip_LEB128(offset_ptr);
329 static_cast<dw_form_t>(debug_info_data.GetULEB128(offset_ptr));
331 offset_ptr, unit);