Lines Matching refs:offset_ptr

3026     lldb::offset_t *offset_ptr, lldb::addr_t &low_pc, lldb::addr_t &high_pc) {  in AddressRangeForLocationListEntry()  argument
3027 if (!debug_loc_data.ValidOffset(*offset_ptr)) in AddressRangeForLocationListEntry()
3036 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3037 high_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3041 switch (debug_loc_data.GetU8(offset_ptr)) { in AddressRangeForLocationListEntry()
3045 uint64_t index = debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3047 index = debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3052 uint64_t index = debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3055 ? debug_loc_data.GetULEB128(offset_ptr) in AddressRangeForLocationListEntry()
3056 : debug_loc_data.GetU32(offset_ptr); in AddressRangeForLocationListEntry()
3061 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3062 high_pc = low_pc + debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3066 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3067 high_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3081 lldb::offset_t *offset_ptr, int address_size, in print_dwarf_exp_op() argument
3083 uint8_t opcode = data.GetU8(offset_ptr); in print_dwarf_exp_op()
3099 uint = data.GetULEB128(offset_ptr); in print_dwarf_exp_op()
3100 sint = data.GetSLEB128(offset_ptr); in print_dwarf_exp_op()
3212 sint = (int8_t)data.GetU8(offset_ptr); in print_dwarf_exp_op()
3216 sint = (int16_t)data.GetU16(offset_ptr); in print_dwarf_exp_op()
3220 sint = (int32_t)data.GetU32(offset_ptr); in print_dwarf_exp_op()
3224 sint = (int64_t)data.GetU64(offset_ptr); in print_dwarf_exp_op()
3228 sint = data.GetSLEB128(offset_ptr); in print_dwarf_exp_op()
3232 uint = data.GetU8(offset_ptr); in print_dwarf_exp_op()
3236 uint = data.GetU16(offset_ptr); in print_dwarf_exp_op()
3240 uint = data.GetU32(offset_ptr); in print_dwarf_exp_op()
3244 uint = data.GetU64(offset_ptr); in print_dwarf_exp_op()
3248 uint = data.GetULEB128(offset_ptr); in print_dwarf_exp_op()