Searched refs:BigitLength (Results 1 – 3 of 3) sorted by relevance
199 EnsureCapacity(1 + (std::max)(BigitLength(), other.BigitLength()) - exponent_); in AddBignum()522 if (BigitLength() < other.BigitLength()) { in DivideModuloIntBignum()532 while (BigitLength() > other.BigitLength()) { in DivideModuloIntBignum()544 DOUBLE_CONVERSION_ASSERT(BigitLength() == other.BigitLength()); in DivideModuloIntBignum()617 const int needed_chars = (BigitLength() - 1) * kHexCharsPerBigit + in ToHexString()647 if (index >= BigitLength()) { in BigitOrZero()660 const int bigit_length_a = a.BigitLength(); in Compare()661 const int bigit_length_b = b.BigitLength(); in Compare()687 if (a.BigitLength() < b.BigitLength()) { in PlusCompare()690 if (a.BigitLength() + 1 < c.BigitLength()) { in PlusCompare()[all …]
147 int BigitLength() const { return used_bigits_ + exponent_; } in BigitLength() function