Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
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()
/openbsd/src/gnu/llvm/lldb/source/API/
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()
/openbsd/src/gnu/llvm/lldb/include/lldb/Utility/
DDataExtractor.h511 int64_t GetMaxS64(lldb::offset_t *offset_ptr, size_t byte_size) const;
/openbsd/src/gnu/llvm/lldb/source/Utility/
DDataExtractor.cpp568 int64_t DataExtractor::GetMaxS64(offset_t *offset_ptr, size_t byte_size) const { in GetMaxS64() function in DataExtractor
606 int64_t sval64 = GetMaxS64(offset_ptr, size); in GetMaxS64Bitfield()
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DCompilerType.cpp922 int64_t sval64 = data.GetMaxS64(&offset, *byte_size); in GetValueAsScalar()