Searched refs:GetMaxS64 (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
| D | ELFHeader.cpp | 47 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() 403 return GetMaxS64(data, offset, &d_tag, byte_size, 2); in Parse() 431 if (!GetMaxS64(data, offset, &r_addend, byte_size)) in Parse()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBData.cpp | 256 value = (int8_t)m_opaque_sp->GetMaxS64(&offset, 1); in GetSignedInt8() 272 value = (int16_t)m_opaque_sp->GetMaxS64(&offset, 2); in GetSignedInt16() 288 value = (int32_t)m_opaque_sp->GetMaxS64(&offset, 4); in GetSignedInt32() 304 value = (int64_t)m_opaque_sp->GetMaxS64(&offset, 8); in GetSignedInt64()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/ |
| D | DataExtractor.h | 500 int64_t GetMaxS64(lldb::offset_t *offset_ptr, size_t byte_size) const;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/ |
| D | DataExtractor.cpp | 570 int64_t DataExtractor::GetMaxS64(offset_t *offset_ptr, size_t byte_size) const { in GetMaxS64() function in DataExtractor 608 int64_t sval64 = GetMaxS64(offset_ptr, size); in GetMaxS64Bitfield()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/ |
| D | CompilerType.cpp | 824 int64_t sval64 = data.GetMaxS64(&offset, *byte_size); in GetValueAsScalar()
|