Home
last modified time | relevance | path

Searched refs:GetU64 (Results 1 – 25 of 48) sorted by relevance

12

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugMacro.cpp31 header.m_debug_line_offset = debug_macro_data.GetU64(offset); in ParseHeader()
88 str_offset = debug_macro_data.GetU64(offset); in ReadMacroEntries()
111 new_offset = debug_macro_data.GetU64(offset); in ReadMacroEntries()
DDWARFUnit.cpp278 length = strOffsets.GetU64(&baseOffset); in SetDwoStrOffsetsBase()
796 header.m_dwo_id = data.GetU64(offset_ptr); in extract()
825 header.m_type_hash = data.GetU64(offset_ptr); in extract()
/external/llvm-project/lldb/source/Symbol/
DDWARFCallFrameInfo.cpp115 addressValue = DE.GetU64(offset_ptr); in GetGNUEHPointer()
127 addressValue = (int64_t)DE.GetU64(offset_ptr); in GetGNUEHPointer()
253 length = m_cfi_data.GetU64(&offset); in ParseCIE()
254 cie_id = m_cfi_data.GetU64(&offset); in ParseCIE()
442 len = m_cfi_data.GetU64(&offset); in GetFDEIndex()
443 cie_id = m_cfi_data.GetU64(&offset); in GetFDEIndex()
543 length = m_cfi_data.GetU64(&offset); in FDEToUnwindPlan()
544 cie_offset = m_cfi_data.GetU64(&offset); in FDEToUnwindPlan()
DCompilerType.cpp837 u64 = data.GetU64(&offset); in GetValueAsScalar()
847 u64 = data.GetU64(&offset); in GetValueAsScalar()
857 u64 = data.GetU64(&offset); in GetValueAsScalar()
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dtransformation_replace_boolean_constant_with_constant_binary.cpp230 if (!unsigned_int_binop_evaluates_to(lhs_constant->GetU64(), in IsApplicable()
231 rhs_constant->GetU64(), in IsApplicable()
Dfuzzer_pass_obfuscate_constants.cpp234 unsigned_int_constant_1->GetU64() > unsigned_int_constant_2->GetU64(); in ObfuscateBoolConstantViaUnsignedIntConstantPair()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dtransformation_replace_boolean_constant_with_constant_binary.cpp230 if (!unsigned_int_binop_evaluates_to(lhs_constant->GetU64(), in IsApplicable()
231 rhs_constant->GetU64(), in IsApplicable()
Dfuzzer_pass_obfuscate_constants.cpp234 unsigned_int_constant_1->GetU64() > unsigned_int_constant_2->GetU64(); in ObfuscateBoolConstantViaUnsignedIntConstantPair()
/external/llvm-project/lldb/include/lldb/Utility/
DDataExtractor.h733 uint64_t GetU64(lldb::offset_t *offset_ptr) const;
758 void *GetU64(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
DStringExtractor.h81 uint64_t GetU64(uint64_t fail_value, int base = 0);
/external/llvm-project/lldb/tools/debugserver/source/
DStdStringExtractor.h74 uint64_t GetU64(uint64_t fail_value, int base = 0);
DStdStringExtractor.cpp117 uint64_t StdStringExtractor::GetU64(uint64_t fail_value, int base) { in GetU64() function in StdStringExtractor
/external/llvm-project/lldb/source/Plugins/Process/minidump/
DRegisterContextMinidump_ARM64.cpp775 m_regs.context_flags = data.GetU64(&offset); in RegisterContextMinidump_ARM64()
777 m_regs.x[i] = data.GetU64(&offset); in RegisterContextMinidump_ARM64()
778 m_regs.pc = data.GetU64(&offset); in RegisterContextMinidump_ARM64()
DRegisterContextMinidump_ARM.cpp474 m_regs.fpscr = data.GetU64(&offset); in RegisterContextMinidump_ARM()
476 m_regs.d[i] = data.GetU64(&offset); in RegisterContextMinidump_ARM()
/external/llvm-project/lldb/source/Plugins/ABI/Mips/
DABISysV_mips64.cpp980 return_value[0] = f0_data.GetU64(&offset); in GetReturnValueObjectImpl()
984 return_value[1] = f1_data.GetU64(&offset); in GetReturnValueObjectImpl()
986 return_value[1] = f0_data.GetU64(&offset); in GetReturnValueObjectImpl()
990 return_value[0] = f1_data.GetU64(&offset); in GetReturnValueObjectImpl()
/external/llvm-project/lldb/source/Utility/
DDataExtractor.cpp477 uint64_t DataExtractor::GetU64(offset_t *offset_ptr) const { in GetU64() function in DataExtractor
496 void *DataExtractor::GetU64(offset_t *offset_ptr, void *void_dst, in GetU64() function in DataExtractor
538 return GetU64(offset_ptr); in GetMaxU64()
945 sstr.Printf(" %16.16" PRIx64, GetU64(&offset)); in PutToLog()
DRegisterValue.cpp220 uint64_t data1 = src.GetU64(&src_offset); in SetValueFromData()
221 uint64_t data2 = src.GetU64(&src_offset); in SetValueFromData()
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
DCommunicationKDP.cpp936 const uint64_t addr = packet.GetU64(&offset); in DumpPacket()
943 const uint64_t addr = packet.GetU64(&offset); in DumpPacket()
952 const uint64_t addr = packet.GetU64(&offset); in DumpPacket()
961 const uint64_t addr = packet.GetU64(&offset); in DumpPacket()
1004 const uint64_t addr = packet.GetU64(&offset); in DumpPacket()
/external/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/
DSystemRuntimeMacOSX.cpp918 uint64_t serialnum = extractor.GetU64(&offset); in PopulateQueuesUsingLibBTR()
960 item.enqueuing_thread_id = extractor.GetU64(&offset); in ExtractItemInfoFromBuffer()
961 item.enqueuing_queue_serialnum = extractor.GetU64(&offset); in ExtractItemInfoFromBuffer()
962 item.target_queue_serialnum = extractor.GetU64(&offset); in ExtractItemInfoFromBuffer()
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DLinuxProcMaps.cpp104 line_extractor.GetU64(0, 10); // Read the inode number in ParseMemoryRegionInfoFromProcMapsLine()
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp166 (&gpr.rax)[i] = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
180 exc.faultvaddr = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
619 gpr.x[i] = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
620 gpr.fp = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
621 gpr.lr = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
622 gpr.sp = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
623 gpr.pc = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
644 exc.far = data.GetU64(&offset); in SetRegisterDataFrom_LC_THREAD()
2732 dsc_mapping_info_data.GetU64(&offset); in ParseSymtab()
2736 uint64_t localSymbolsOffset = dsc_header_data.GetU64(&offset); in ParseSymtab()
[all …]
/external/llvm-project/lldb/source/Core/
DDumpDataExtractor.cpp78 u64 = data.GetU64(offset_ptr); in GetAPInt()
94 u64 = data.GetU64(&temp_offset); in GetAPInt()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dconst_folding_rules.cpp935 uint64_t va = a->GetU64(); in FoldMin()
936 uint64_t vb = b->GetU64(); in FoldMin()
975 uint64_t va = a->GetU64(); in FoldMax()
976 uint64_t vb = b->GetU64(); in FoldMax()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dconst_folding_rules.cpp935 uint64_t va = a->GetU64(); in FoldMin()
936 uint64_t vb = b->GetU64(); in FoldMin()
975 uint64_t va = a->GetU64(); in FoldMax()
976 uint64_t vb = b->GetU64(); in FoldMax()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp263 uint64_t addr = data.GetU64 (&offset); in SearchForKernelWithDebugHints()
1398 image_infos[i].SetLoadAddress(extractor.GetU64(&offset)); in ReadKextSummaries()
1399 image_infos[i].SetSize(extractor.GetU64(&offset)); in ReadKextSummaries()

12