Lines Matching defs:Rem
2744 APInt Quo, Rem;
2745 APInt::udivrem(A, B, Quo, Rem);
2746 if (Rem.isZero())
2759 APInt Quo, Rem;
2760 APInt::sdivrem(A, B, Quo, Rem);
2761 if (Rem.isZero())
2769 if (Rem.isNegative() != B.isNegative())
2773 if (Rem.isNegative() != B.isNegative())
2925 APInt Rem;
2934 APInt::sdivrem(-B - (SQ+InexactSQ), TwoA, X, Rem);
2936 APInt::sdivrem(-B + SQ, TwoA, X, Rem);
2943 if (!InexactSQ && Rem.isZero()) {