|
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);
1070 EXPECT_EQ(Q, APInt(65, 1));
1072 APInt::udivrem(A, B, Q, R);
1073 EXPECT_EQ(Q, APInt(65, 1));
1078 APInt::sdivrem(O, B, Q, R);
1079 EXPECT_EQ(Q, APInt(65, 0));
1081 APInt::udivrem(O, B, Q, R);
1082 EXPECT_EQ(Q, APInt(65, 0));
1087 APInt::sdivrem(A, I, Q, R);
1088 EXPECT_EQ(Q, A);
1090 APInt::udivrem(A, I, Q, R);
1091 EXPECT_EQ(Q, A);