Home
last modified time | relevance | path

Searched refs:GetMaxS64 (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp47 static bool GetMaxS64(const lldb_private::DataExtractor &data, in GetMaxS64() function
51 *value = data.GetMaxS64(offset, byte_size); in GetMaxS64()
55 static bool GetMaxS64(const lldb_private::DataExtractor &data, in GetMaxS64() function
61 if (!GetMaxS64(data, offset, value, byte_size)) { in GetMaxS64()
409 return GetMaxS64(data, offset, &d_tag, byte_size, 2); in Parse()
437 if (!GetMaxS64(data, offset, &r_addend, byte_size)) in Parse()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBData.cpp245 value = (int8_t)m_opaque_sp->GetMaxS64(&offset, 1); in GetSignedInt8()
260 value = (int16_t)m_opaque_sp->GetMaxS64(&offset, 2); in GetSignedInt16()
275 value = (int32_t)m_opaque_sp->GetMaxS64(&offset, 4); in GetSignedInt32()
290 value = (int64_t)m_opaque_sp->GetMaxS64(&offset, 8); in GetSignedInt64()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataExtractor.h511 int64_t GetMaxS64(lldb::offset_t *offset_ptr, size_t byte_size) const;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp569 int64_t DataExtractor::GetMaxS64(offset_t *offset_ptr, size_t byte_size) const { in GetMaxS64() function in DataExtractor
607 int64_t sval64 = GetMaxS64(offset_ptr, size); in GetMaxS64Bitfield()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp1127 int64_t sval64 = data.GetMaxS64(&offset, *byte_size); in GetValueAsScalar()