|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
unittests/ADT/APIntTest.cpp 1069 APInt::sdivrem(A, B, Q, R);
1071 EXPECT_EQ(R, APInt(65, 0));
1072 APInt::udivrem(A, B, Q, R);
1074 EXPECT_EQ(R, APInt(65, 0));
1078 APInt::sdivrem(O, B, Q, R);
1080 EXPECT_EQ(R, APInt(65, 0));
1081 APInt::udivrem(O, B, Q, R);
1083 EXPECT_EQ(R, APInt(65, 0));
1087 APInt::sdivrem(A, I, Q, R);
1089 EXPECT_EQ(R, APInt(65, 0));
1090 APInt::udivrem(A, I, Q, R);
1092 EXPECT_EQ(R, APInt(65, 0));