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

References

tools/lldb/source/Utility/Scalar.cpp
   47   Scalar::Type lhs_type = lhs.GetType();
   48   Scalar::Type rhs_type = rhs.GetType();
   65   if (promoted_lhs_ptr->GetType() == promoted_rhs_ptr->GetType())
   65   if (promoted_lhs_ptr->GetType() == promoted_rhs_ptr->GetType())
   66     return promoted_lhs_ptr->GetType(); // Return the resulting max type
tools/lldb/unittests/Utility/ScalarTest.cpp
  273     EXPECT_EQ(A.GetType(), Scalar::e_sint);
  277   EXPECT_EQ(B.GetType(), Scalar::GetBestTypeForBitSize(64, true));
  279   EXPECT_EQ(C.GetType(), Scalar::e_sint128);
  281   EXPECT_EQ(D.GetType(), Scalar::e_sint256);
  283   EXPECT_EQ(E.GetType(), Scalar::e_sint512);
  297   EXPECT_EQ(S.GetType(), Scalar::e_uint512);
  303   EXPECT_EQ(S.GetType(), Scalar::e_sint512);