Home
last modified time | relevance | path

Searched refs:GetMaxU64 (Results 1 – 17 of 17) sorted by relevance

/external/lldb/source/Plugins/ObjectFile/ELF/
DELFHeader.cpp28 GetMaxU64(const lldb_private::DataExtractor &data, in GetMaxU64() function
34 *value = data.GetMaxU64(offset, byte_size); in GetMaxU64()
39 GetMaxU64(const lldb_private::DataExtractor &data, in GetMaxU64() function
49 if (GetMaxU64(data, offset, value, byte_size) == false) in GetMaxU64()
127 if (GetMaxU64(data, offset, &e_entry, byte_size, 3) == false) in Parse()
210 if (GetMaxU64(data, offset, &sh_flags, byte_size) == false) in Parse()
214 if (GetMaxU64(data, offset, &sh_addr, byte_size, 3) == false) in Parse()
222 if (GetMaxU64(data, offset, &sh_addralign, byte_size, 2) == false) in Parse()
333 if (GetMaxU64(data, offset, &st_value, byte_size, 2) == false) in Parse()
382 if (GetMaxU64(data, offset, &p_offset, byte_size, 5) == false) in Parse()
[all …]
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugRanges.cpp95 dw_addr_t begin = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Extract()
96 dw_addr_t end = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Extract()
143 dw_addr_t begin = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Dump()
144 dw_addr_t end = debug_ranges_data.GetMaxU64(offset_ptr, addr_size); in Dump()
DDWARFLocationList.cpp29 start_addr = debug_loc_data.GetMaxU64(&offset,addr_size); in Dump()
30 end_addr = debug_loc_data.GetMaxU64(&offset,addr_size); in Dump()
DDWARFDebugArangeSet.cpp212 arangeDescriptor.address = data.GetMaxU64(offset_ptr, m_header.addr_size); in Extract()
213 arangeDescriptor.length = data.GetMaxU64(offset_ptr, m_header.addr_size); in Extract()
DDWARFFormValue.cpp128 …case DW_FORM_addr: m_value.value.uval = data.GetMaxU64(offset_ptr, DWARFCompileUnit::GetAddre… in ExtractValue()
150 … m_value.value.uval = data.GetMaxU64(offset_ptr, DWARFCompileUnit::GetAddressByteSize(cu)); in ExtractValue()
DDWARFDebugLine.cpp238 row.address = debug_line_data.GetMaxU64(&offset, arg_size); in DumpStatementOpcodes()
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DAuxVector.cpp32 GetMaxU64(DataExtractor &data, in GetMaxU64() function
38 *value = data.GetMaxU64(offset_ptr, byte_size); in GetMaxU64()
48 if (!GetMaxU64(data, offset_ptr, &entry.type, byte_size)) in ParseAuxvEntry()
51 if (!GetMaxU64(data, offset_ptr, &entry.value, byte_size)) in ParseAuxvEntry()
/external/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp408 … m_coff_header_opt.image_base = m_data.GetMaxU64 (offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader()
423 … m_coff_header_opt.stack_reserve_size = m_data.GetMaxU64 (offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader()
424 … m_coff_header_opt.stack_commit_size = m_data.GetMaxU64 (offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader()
425 … m_coff_header_opt.heap_reserve_size = m_data.GetMaxU64 (offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader()
426 … m_coff_header_opt.heap_commit_size = m_data.GetMaxU64 (offset_ptr, addr_byte_size); in ParseCOFFOptionalHeader()
/external/lldb/source/Core/
DDataExtractor.cpp647 DataExtractor::GetMaxU64 (offset_t *offset_ptr, size_t size) const in GetMaxU64() function in DataExtractor
697 uint64_t uval64 = GetMaxU64 (offset_ptr, size); in GetMaxU64Bitfield()
813 return GetMaxU64 (offset_ptr, m_addr_size); in GetAddress()
833 return GetMaxU64 (offset_ptr, m_addr_size); in GetPointer()
1283 u64 = data.GetMaxU64(offset_ptr, (uint32_t)bytes_left); in GetAPInt()
1308 u64 = data.GetMaxU64(&temp_offset, (uint32_t)bytes_left); in GetAPInt()
1767 … llvm::APInt apint(item_bit_size, this->GetMaxU64(&offset, item_byte_size)); in Dump()
DEmulateInstruction.cpp192 uval64 = data.GetMaxU64 (&offset, byte_size); in ReadMemoryUnsigned()
DRegisterValue.cpp354 case eTypeUInt64: SetUInt64 (src.GetMaxU64 (&src_offset, src_len)); break; in SetValueFromData()
/external/lldb/include/lldb/Core/
DDataExtractor.h668 GetMaxU64 (lldb::offset_t *offset_ptr, size_t byte_size) const;
/external/lldb/source/Plugins/ABI/SysV-x86_64/
DABISysV_x86_64.cpp594 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
/external/lldb/source/Expression/
DIRInterpreter.cpp177 uint64_t u64value = value_extractor.GetMaxU64(&offset, value_size); in EvaluateValue()
/external/lldb/source/Target/
DTarget.cpp1464 scalar = data.GetMaxU64 (&offset, byte_size); in ReadScalarIntegerFromMemory()
DProcess.cpp2699 scalar = data.GetMaxU64 (&offset, byte_size); in ReadScalarIntegerFromMemory()
/external/lldb/source/Symbol/
DClangASTType.cpp6015 lldb::addr_t pointer_addresss = data.GetMaxU64(&offset, data_byte_size); in DumpSummary()
6188 uint64_t uval64 = data.GetMaxU64 (&offset, byte_size); in GetValueAsScalar()