Home | History | Annotate | Download | only in Support

Lines Matching refs:divisor

942   integerPart *lhsSignificand, *dividend, *divisor;
957 divisor = dividend + partsCount;
959 /* Copy the dividend and divisor as they will be modified in-place. */
962 divisor[i] = rhsSignificand[i];
970 /* Normalize the divisor. */
971 bit = precision - APInt::tcMSB(divisor, partsCount) - 1;
974 APInt::tcShiftLeft(divisor, partsCount, bit);
984 /* Ensure the dividend >= divisor initially for the loop below.
987 if (APInt::tcCompare(dividend, divisor, partsCount) < 0) {
990 assert(APInt::tcCompare(dividend, divisor, partsCount) >= 0);
995 if (APInt::tcCompare(dividend, divisor, partsCount) >= 0) {
996 APInt::tcSubtract(dividend, divisor, 0, partsCount);
1004 int cmp = APInt::tcCompare(dividend, divisor, partsCount);
3302 APInt divisor(significand.getBitWidth(), 1);
3306 divisor *= powten;
3312 significand = significand.udiv(divisor);