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

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  479   uint64_t GetMaxU64_unchecked(lldb::offset_t *offset_ptr,

References

tools/lldb/source/Utility/DataExtractor.cpp
  679   return GetMaxU64_unchecked(offset_ptr, m_addr_size);
tools/lldb/unittests/Utility/DataExtractorTest.cpp
  183   EXPECT_EQ(0x01U, LE.GetMaxU64_unchecked(&offset, 1));
  186   EXPECT_EQ(0x01U, BE.GetMaxU64_unchecked(&offset, 1));
  191   EXPECT_EQ(0x0302U, LE.GetMaxU64_unchecked(&offset, 2));
  194   EXPECT_EQ(0x0203U, BE.GetMaxU64_unchecked(&offset, 2));
  199   EXPECT_EQ(0x07060504030201U, LE.GetMaxU64_unchecked(&offset, 7));
  202   EXPECT_EQ(0x01020304050607U, BE.GetMaxU64_unchecked(&offset, 7));
  207   EXPECT_EQ(0x0807060504030201U, LE.GetMaxU64_unchecked(&offset, 8));
  210   EXPECT_EQ(0x0102030405060708U, BE.GetMaxU64_unchecked(&offset, 8));