Searched refs:kDigitBits (Results 1 – 2 of 2) sorted by relevance
252 int digits = exponent / kDigitBits + 1; in NewFromDouble()270 int msd_topbit = exponent % kDigitBits; in NewFromDouble()291 remaining_mantissa_bits -= kDigitBits; in NewFromDouble()422 int needed_digits = 1 + (n / kDigitBits); in Exponentiate()429 digit_t msd = static_cast<digit_t>(1) << (n % kDigitBits); in Exponentiate()855 int x_bitlength = x_length * kDigitBits - msd_leading_zeros; in CompareToDouble()876 int msd_topbit = kDigitBits - 1 - msd_leading_zeros; in CompareToDouble()877 DCHECK_EQ(msd_topbit, (x_bitlength - 1) % kDigitBits); in CompareToDouble()901 remaining_mantissa_bits -= kDigitBits; in CompareToDouble()903 compare_mantissa = mantissa >> (64 - kDigitBits); in CompareToDouble()[all …]
54 static const int kDigitBits = kDigitSize * kBitsPerByte; variable55 static const int kHalfDigitBits = kDigitBits / 2;