Lines Matching defs:quotient
55 result.quotient = q / y;
57 * Once we have the quotient, it's cheaper to calculate the
60 result.remainder = (ficlInteger)(q - (result.quotient * y));
302 ficl2Unsigned quotient;
306 quotient.low = 0;
307 quotient.high = 0;
324 quotient = ficl2UnsignedOr(quotient, mask);
330 result.quotient = quotient;
341 * the sign of the divisor or is zero, and the quotient is rounded to
344 * quotient is the mathematical quotient rounded towards zero or
389 qr.quotient = ficl2IntegerNegate(qr.quotient);
391 qr.quotient = ficl2IntegerDecrement(qr.quotient);
404 * Divide an ficl2Unsigned by a ficlInteger and return a ficlInteger quotient
405 * and a ficlInteger remainder. The absolute values of quotient and remainder
437 qr.quotient = ficl2IntegerNegate(qr.quotient);