HomeSort by relevance Sort by last modified time
    Searched defs:GetMaxU64 (Results 1 - 3 of 3) sorted by null

  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
AuxVector.cpp 32 GetMaxU64(DataExtractor &data,
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/
ELFHeader.cpp 25 // GetMaxU64 and GetMaxS64 wrap the similarly named methods from DataExtractor
28 GetMaxU64(const lldb_private::DataExtractor &data,
34 *value = data.GetMaxU64(offset, byte_size);
39 GetMaxU64(const lldb_private::DataExtractor &data,
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(data, offset, &st_value, byte_size, 2) == false
    [all...]
  /external/lldb/source/Core/
DataExtractor.cpp 647 DataExtractor::GetMaxU64 (offset_t *offset_ptr, size_t size) const
697 uint64_t uval64 = GetMaxU64 (offset_ptr, size);
813 return GetMaxU64 (offset_ptr, m_addr_size);
833 return GetMaxU64 (offset_ptr, m_addr_size);
    [all...]

Completed in 47 milliseconds