Lines Matching refs:shift
16 void LeftShift(RWDigits Z, Digits X, int shift);
17 void RightShift(RWDigits Z, Digits X, int shift);
26 // Division algorithms typically need to left-shift their inputs into
34 // If {shift} is not given, it is auto-detected from {original}'s
38 explicit ShiftedDigits(Digits& original, int shift = -1,
42 if (shift < 0) {
43 shift = leading_zeros;
44 } else if (shift > leading_zeros) {
48 shift_ = shift;
49 if (shift == 0) {
71 int shift() { return shift_; }