reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  503   int64_t GetMaxS64(lldb::offset_t *offset_ptr, size_t byte_size) const;

References

tools/lldb/source/API/SBData.cpp
  256     value = (int8_t)m_opaque_sp->GetMaxS64(&offset, 1);
  272     value = (int16_t)m_opaque_sp->GetMaxS64(&offset, 2);
  288     value = (int32_t)m_opaque_sp->GetMaxS64(&offset, 4);
  304     value = (int64_t)m_opaque_sp->GetMaxS64(&offset, 8);
tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
   51   *value = data.GetMaxS64(offset, byte_size);
tools/lldb/source/Symbol/CompilerType.cpp
  820         int64_t sval64 = data.GetMaxS64(&offset, *byte_size);
tools/lldb/source/Utility/DataExtractor.cpp
  598   int64_t sval64 = GetMaxS64(offset_ptr, size);
tools/lldb/unittests/Utility/DataExtractorTest.cpp
  148   EXPECT_EQ(0x01, LE.GetMaxS64(&offset, 1));
  151   EXPECT_EQ(0x01, BE.GetMaxS64(&offset, 1));
  156   int64_t value = LE.GetMaxS64(&offset, 3);
  160   value = BE.GetMaxS64(&offset, 3);
  166   EXPECT_EQ(0x0807060504830201, LE.GetMaxS64(&offset, 8));
  169   EXPECT_EQ(0x0102830405060708, BE.GetMaxS64(&offset, 8));