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