Lines Matching refs:unit
238 var unit = new jspb.arith.UInt64(1, 0);
240 // Left-shift the divisor and unit until the high bit of divisor is set.
243 unit = unit.leftShift();
247 while (!unit.zero()) {
248 // If divisor < remainder, add unit to quotient and subtract divisor from
251 quotient = quotient.add(unit);
254 // Right-shift the divisor and unit.
256 unit = unit.rightShift();