Home | History | Annotate | Download | only in binary

Lines Matching refs:remainder

222  * 64-bit quotient and a 32-bit remainder.
224 * @return {Array.<jspb.arith.UInt64>} array of [quotient, remainder],
236 var remainder = new jspb.arith.UInt64(this.lo, this.hi);
248 // If divisor < remainder, add unit to quotient and subtract divisor from
249 // remainder.
250 if (divisor.cmp(remainder) <= 0) {
252 remainder = remainder.sub(divisor);
259 return [quotient, remainder];
273 var quotient = divResult[0], remainder = divResult[1];
274 result = remainder.lo + result;