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

Declarations

tools/lldb/include/lldb/Utility/Scalar.h
  108   static Type GetBestTypeForBitSize(size_t bit_size, bool sign);

References

tools/lldb/include/lldb/Utility/Scalar.h
  102     m_type = GetBestTypeForBitSize(m_integer.getBitWidth(), true);
tools/lldb/source/Expression/DWARFExpression.cpp
 2454         type = Scalar::GetBestTypeForBitSize(bit_size, false);
 2477           type = Scalar::GetBestTypeForBitSize(bit_size, true);
 2481           type = Scalar::GetBestTypeForBitSize(bit_size, false);
tools/lldb/unittests/Expression/DWARFExpressionTest.cpp
  168   auto type = Scalar::GetBestTypeForBitSize(bits, sign);
tools/lldb/unittests/Utility/ScalarTest.cpp
  277   EXPECT_EQ(B.GetType(), Scalar::GetBestTypeForBitSize(64, true));