Lines Matching defs:shift
90 // Specialized helpers for shift operations.
1097 // "hidden bit". We also need to hide that MSB, so we shift it out.
1100 int shift = msd_leading_zeros + 1 + (64 - kDigitBits);
1101 DCHECK_LE(1, shift);
1102 DCHECK_LE(shift, 64);
1103 uint64_t mantissa = (shift == 64) ? 0 : current_digit << shift;
1105 int mantissa_bits_unset = shift - 12;
1249 digit_t shift = maybe_shift.FromJust();
1251 x->length(), x->digit(x->length() - 1), shift);
1259 bigint::LeftShift(GetRWDigits(result), GetDigits(x), shift);
1272 const digit_t shift = maybe_shift.FromJust();
1275 bigint::RightShift_ResultLength(GetDigits(x), sign, shift, &state);
1281 bigint::RightShift(GetRWDigits(result), GetDigits(x), shift, state);