/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
D | ELFHeader.cpp | 25 static bool GetMaxU64(const lldb_private::DataExtractor &data, in GetMaxU64() function 29 *value = data.GetMaxU64(offset, byte_size); in GetMaxU64() 33 static bool GetMaxU64(const lldb_private::DataExtractor &data, in GetMaxU64() function 39 if (!GetMaxU64(data, offset, value, byte_size)) { in GetMaxU64() 133 if (!GetMaxU64(data, offset, &e_entry, byte_size, 3)) in Parse() 231 if (!GetMaxU64(data, offset, &sh_flags, byte_size)) in Parse() 235 if (!GetMaxU64(data, offset, &sh_addr, byte_size, 3)) in Parse() 243 if (!GetMaxU64(data, offset, &sh_addralign, byte_size, 2)) in Parse() 330 if (!GetMaxU64(data, offset, &st_value, byte_size, 2)) in Parse() 373 if (!GetMaxU64(data, offset, &p_offset, byte_size, 5)) in Parse() [all …]
|
/external/llvm-project/lldb/unittests/Utility/ |
D | DataExtractorTest.cpp | 125 EXPECT_EQ(0x0201U, E2.GetMaxU64(&offset, 2)); in TEST() 133 EXPECT_EQ(0x030201U, E5.GetMaxU64(&offset, 3)); in TEST() 141 EXPECT_EQ(0x0504030201U, E7.GetMaxU64(&offset, 5)); in TEST() 148 TEST(DataExtractorTest, GetMaxU64) { in TEST() argument 158 EXPECT_EQ(0x01U, LE.GetMaxU64(&offset, 1)); in TEST() 161 EXPECT_EQ(0x01U, BE.GetMaxU64(&offset, 1)); in TEST() 166 EXPECT_EQ(0x0302U, LE.GetMaxU64(&offset, 2)); in TEST() 169 EXPECT_EQ(0x0203U, BE.GetMaxU64(&offset, 2)); in TEST() 174 EXPECT_EQ(0x07060504030201U, LE.GetMaxU64(&offset, 7)); in TEST() 177 EXPECT_EQ(0x01020304050607U, BE.GetMaxU64(&offset, 7)); in TEST() [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugRanges.cpp | 53 dw_addr_t begin = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Extract() 54 dw_addr_t end = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Extract() 84 dw_addr_t begin = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Dump() 85 dw_addr_t end = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Dump()
|
D | DWARFFormValue.cpp | 47 data.GetMaxU64(offset_ptr, DWARFUnit::GetAddressByteSize(m_unit)); in ExtractValue() 79 m_value.value.uval = data.GetMaxU64(offset_ptr, 4); in ExtractValue() 96 m_value.value.uval = data.GetMaxU64(offset_ptr, 3); in ExtractValue() 125 m_value.value.uval = data.GetMaxU64(offset_ptr, ref_addr_size); in ExtractValue() 495 return symbol_file.GetDWARFContext().getOrLoadAddrData().GetMaxU64( in Address()
|
D | DWARFDebugArangeSet.cpp | 109 arangeDescriptor.address = data.GetMaxU64(offset_ptr, m_header.addr_size); in extract() 110 arangeDescriptor.length = data.GetMaxU64(offset_ptr, m_header.addr_size); in extract()
|
D | DWARFDataExtractor.cpp | 21 return GetMaxU64(offset_ptr, GetDWARFSizeOfOffset()); in GetDWARFOffset()
|
/external/llvm-project/lldb/source/Plugins/Process/elf-core/ |
D | RegisterContextPOSIXCore_mips64.cpp | 62 v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister() 67 v =m_fpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
|
D | RegisterContextPOSIXCore_s390x.cpp | 60 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister() 69 uint64_t v = m_fpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
|
D | RegisterContextPOSIXCore_powerpc.cpp | 69 uint64_t v = m_fpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister() 82 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
|
D | RegisterContextPOSIXCore_arm.cpp | 48 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
|
D | ThreadElfCore.cpp | 367 pr_uid = data.GetMaxU64(&offset, data.GetAddressByteSize() >> 1); in Parse() 368 pr_gid = data.GetMaxU64(&offset, data.GetAddressByteSize() >> 1); in Parse()
|
D | RegisterContextPOSIXCore_ppc64le.cpp | 116 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
|
D | RegisterContextPOSIXCore_arm64.cpp | 107 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
|
/external/llvm-project/lldb/source/Utility/ |
D | DataExtractor.cpp | 524 return GetMaxU64(offset_ptr, byte_size); in GetMaxU32() 527 uint64_t DataExtractor::GetMaxU64(offset_t *offset_ptr, in GetMaxU64() function in DataExtractor 572 uint64_t u64 = GetMaxU64(offset_ptr, byte_size); in GetMaxS64() 580 uint64_t uval64 = GetMaxU64(offset_ptr, size); in GetMaxU64Bitfield() 654 return GetMaxU64(offset_ptr, m_addr_size); in GetAddress()
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | ProcessStructReader.h | 92 return (RetType)(m_data.GetMaxU64(&offset, size));
|
/external/llvm-project/lldb/source/Plugins/ABI/AArch64/ |
D | ABISysV_arm64.cpp | 247 uint64_t raw_value = data.GetMaxU64(&offset, byte_size); in SetReturnValueObject() 252 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject() 257 raw_value = data.GetMaxU64(&offset, byte_size - offset); in SetReturnValueObject()
|
D | ABIMacOSX_arm64.cpp | 274 uint64_t raw_value = data.GetMaxU64(&offset, byte_size); in SetReturnValueObject() 279 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject() 284 raw_value = data.GetMaxU64(&offset, byte_size - offset); in SetReturnValueObject()
|
/external/llvm-project/lldb/source/Plugins/ABI/Mips/ |
D | ABISysV_mips64.cpp | 700 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject() 705 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject() 709 raw_value = data.GetMaxU64(&offset, num_bytes - offset); in SetReturnValueObject()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/ |
D | ObjectFilePECOFF.cpp | 451 m_data.GetMaxU64(offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader() 467 m_data.GetMaxU64(offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader() 469 m_data.GetMaxU64(offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader() 471 m_data.GetMaxU64(offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader() 473 m_data.GetMaxU64(offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader()
|
/external/llvm-project/lldb/source/Plugins/ABI/ARM/ |
D | ABIMacOSX_arm.cpp | 1749 uint32_t raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject() 1753 raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject() 1757 raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject() 1761 raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject()
|
/external/llvm-project/lldb/source/Core/ |
D | DumpDataExtractor.cpp | 81 u64 = data.GetMaxU64(offset_ptr, (uint32_t)bytes_left); in GetAPInt() 99 u64 = data.GetMaxU64(&temp_offset, (uint32_t)bytes_left); in GetAPInt()
|
D | EmulateInstruction.cpp | 179 uval64 = data.GetMaxU64(&offset, byte_size); in ReadMemoryUnsigned()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | DataExtractor.h | 474 uint64_t GetMaxU64(lldb::offset_t *offset_ptr, size_t byte_size) const;
|
/external/llvm-project/lldb/source/Plugins/ABI/ARC/ |
D | ABISysV_arc.cpp | 346 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
|
/external/llvm-project/lldb/source/Plugins/ABI/SystemZ/ |
D | ABISysV_s390x.cpp | 415 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
|