/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFLocationDescription.cpp | 162 case -8: sint = (int64_t) data.GetU64(offset_ptr); s.Printf("%+" PRIi64, sint); break; in print_dwarf_exp_op() 167 …case 8: uint = data.GetU64(offset_ptr); s.Printf("0x%16.16" PRIx64, uint); bre… in print_dwarf_exp_op()
|
D | DWARFFormValue.cpp | 133 …case DW_FORM_data8: m_value.value.uval = data.GetU64(offset_ptr); br… in ExtractValue() 157 …case DW_FORM_ref8: m_value.value.uval = data.GetU64(offset_ptr); br… in ExtractValue() 166 …case DW_FORM_ref_sig8: m_value.value.uval = data.GetU64(offset_ptr); br… in ExtractValue()
|
D | DWARFDebugInfoEntry.cpp | 244 debug_info_data.GetU64 (offset_ptr); in FastExtract() 411 debug_info_data.GetU64 (offset_ptr); in Extract()
|
/external/lldb/source/Core/ |
D | DataExtractor.cpp | 561 DataExtractor::GetU64 (offset_t *offset_ptr) const in GetU64() function in DataExtractor 583 DataExtractor::GetU64 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU64() function in DataExtractor 654 case 8: return GetU64(offset_ptr); break; in GetMaxU64() 686 case 8: return (int64_t)GetU64(offset_ptr); break; in GetMaxS64() 918 case DW_EH_PE_udata8 : addressValue = GetU64(offset_ptr); break; in GetGNUEHPointer() 922 case DW_EH_PE_sdata8 : addressValue = (int64_t)GetU64(offset_ptr); break; in GetGNUEHPointer() 1278 u64 = data.GetU64(offset_ptr); in GetAPInt() 1301 u64 = data.GetU64(&temp_offset); in GetAPInt() 2063 … case TypeUInt64: sstr.Printf (format ? format : " %16.16" PRIx64, GetU64(&offset)); break; in PutToLog()
|
D | RegisterValue.cpp | 358 __uint128_t data1 = src.GetU64 (&src_offset); in SetValueFromData() 359 __uint128_t data2 = src.GetU64 (&src_offset); in SetValueFromData()
|
D | Address.cpp | 91 uval64 = data.GetU64(&offset); in ReadUIntMax64()
|
D | Scalar.cpp | 1915 case 8: operator=((uint64_t)data.GetU64(&offset)); break; in SetValueFromData() 1931 case 8: operator=((int64_t)data.GetU64(&offset)); break; in SetValueFromData()
|
/external/lldb/include/lldb/Core/ |
D | DataExtractor.h | 993 GetU64 (lldb::offset_t *offset_ptr) const; 1021 GetU64 ( lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
|
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | CommunicationKDP.cpp | 1085 const uint64_t addr = packet.GetU64 (&offset); in DumpPacket() 1094 const uint64_t addr = packet.GetU64 (&offset); in DumpPacket() 1104 const uint64_t addr = packet.GetU64 (&offset); in DumpPacket() 1114 const uint64_t addr = packet.GetU64 (&offset); in DumpPacket() 1161 const uint64_t addr = packet.GetU64 (&offset); in DumpPacket()
|
/external/lldb/source/Expression/ |
D | DWARFExpression.cpp | 326 …case DW_OP_const8u: s->Printf("DW_OP_const8u(0x%16.16" PRIx64 ") ", m_data.GetU64(&offset)); break… in DumpLocation() 327 …case DW_OP_const8s: s->Printf("DW_OP_const8s(0x%16.16" PRIx64 ") ", m_data.GetU64(&offset)); break… in DumpLocation() 1537 … case 8: stack.back().GetScalar() = addr_data.GetU64(&addr_data_offset); break; in Evaluate() 1634 …case DW_OP_const8u : stack.push_back(Scalar((uint64_t)opcodes.GetU64 (&offset))); b… in Evaluate() 1635 …case DW_OP_const8s : stack.push_back(Scalar(( int64_t)opcodes.GetU64 (&offset))); b… in Evaluate()
|
D | IRMemoryMap.cpp | 663 case 8: scalar = extractor.GetU64(&offset); break; in ReadScalarFromMemory()
|
/external/lldb/source/Plugins/Disassembler/llvm/ |
D | DisassemblerLLVMC.cpp | 157 m_opcode.SetOpcode64 (data.GetU64 (&data_offset)); in Decode() 334 const uint64_t uval64 = data.GetU64(&offset); in CalculateMnemonicOperandsAndComment()
|
/external/lldb/source/Plugins/ObjectFile/ELF/ |
D | ELFHeader.cpp | 355 if (data.GetU64(offset, &st_value, 2) == NULL) in Parse()
|
/external/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 92 (&gpr.rax)[i] = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD() 106 exc.faultvaddr = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD() 1952 const uint64_t mapping_offset_value = dsc_mapping_info_data.GetU64(&offset); in ParseSymtab() 1955 uint64_t localSymbolsOffset = dsc_header_data.GetU64(&offset); in ParseSymtab() 1956 uint64_t localSymbolsSize = dsc_header_data.GetU64(&offset); in ParseSymtab() 3872 start_address = m_data.GetU64(&offset); in GetEntryPointAddress() 3889 uint64_t entryoffset = m_data.GetU64(&offset); in GetEntryPointAddress()
|
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
D | DynamicLoaderDarwinKernel.cpp | 1386 image_infos[i].SetLoadAddress (extractor.GetU64(&offset)); in ReadKextSummaries() 1387 image_infos[i].SetSize (extractor.GetU64(&offset)); in ReadKextSummaries()
|
/external/lldb/source/API/ |
D | SBData.cpp | 319 value = m_opaque_sp->GetU64(&offset); in GetUnsignedInt64()
|
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
D | DynamicLoaderMacOSXDYLD.cpp | 1251 data.GetU64(&offset, &segment.vmaddr, 4); in ParseLoadCommands()
|
/external/lldb/source/Symbol/ |
D | ClangASTType.cpp | 6248 u64 = data.GetU64(&offset); in GetValueAsScalar() 6264 u64 = data.GetU64(&offset); in GetValueAsScalar() 6280 u64 = data.GetU64(&offset); in GetValueAsScalar()
|