Searched defs:GetMaxU64 (Results 1 - 3 of 3) sorted by relevance

/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.cpp32 GetMaxU64(DataExtractor &data, function
38 *value = data.GetMaxU64(offset_ptr, byte_size);
48 if (!GetMaxU64(data, offset_ptr, &entry.type, byte_size))
51 if (!GetMaxU64(data, offset_ptr, &entry.value, byte_size))
/external/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp25 // GetMaxU64 and GetMaxS64 wrap the similarly named methods from DataExtractor
28 GetMaxU64(const lldb_private::DataExtractor &data, function
34 *value = data.GetMaxU64(offset, byte_size);
39 GetMaxU64(const lldb_private::DataExtractor &data, function
49 if (GetMaxU64(data, offset, value, byte_size) == false)
127 if (GetMaxU64(data, offset, &e_entry, byte_size, 3) == false)
210 if (GetMaxU64(data, offset, &sh_flags, byte_size) == false)
214 if (GetMaxU64(data, offset, &sh_addr, byte_size, 3) == false)
222 if (GetMaxU64(data, offset, &sh_addralign, byte_size, 2) == false)
333 if (GetMaxU64(dat
[all...]
/external/lldb/source/Core/
H A DDataExtractor.cpp647 DataExtractor::GetMaxU64 (offset_t *offset_ptr, size_t size) const function in class:DataExtractor
697 uint64_t uval64 = GetMaxU64 (offset_ptr, size);
813 return GetMaxU64 (offset_ptr, m_addr_size);
833 return GetMaxU64 (offset_ptr, m_addr_size);
1283 u64 = data.GetMaxU64(offset_ptr, (uint32_t)bytes_left);
1308 u64 = data.GetMaxU64(&temp_offset, (uint32_t)bytes_left);
1767 llvm::APInt apint(item_bit_size, this->GetMaxU64(&offset, item_byte_size));

Completed in 196 milliseconds