Lines Matching defs:Rem
2740 APInt Quo, Rem;
2741 APInt::udivrem(A, B, Quo, Rem);
2742 if (Rem.isZero())
2755 APInt Quo, Rem;
2756 APInt::sdivrem(A, B, Quo, Rem);
2757 if (Rem.isZero())
2765 if (Rem.isNegative() != B.isNegative())
2769 if (Rem.isNegative() != B.isNegative())
2921 APInt Rem;
2930 APInt::sdivrem(-B - (SQ+InexactSQ), TwoA, X, Rem);
2932 APInt::sdivrem(-B + SQ, TwoA, X, Rem);
2939 if (!InexactSQ && Rem.isZero()) {