Searched refs:BigitLength (Results 1 – 2 of 2) sorted by relevance
192 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_); in AddBignum()496 if (BigitLength() < other.BigitLength()) { in DivideModuloIntBignum()506 while (BigitLength() > other.BigitLength()) { in DivideModuloIntBignum()517 ASSERT(BigitLength() == other.BigitLength()); in DivideModuloIntBignum()584 int needed_chars = (BigitLength() - 1) * kHexCharsPerBigit + in ToHexString()612 if (index >= BigitLength()) return 0; in BigitAt()621 int bigit_length_a = a.BigitLength(); in Compare()622 int bigit_length_b = b.BigitLength(); in Compare()640 if (a.BigitLength() < b.BigitLength()) { in PlusCompare()643 if (a.BigitLength() + 1 < c.BigitLength()) return -1; in PlusCompare()[all …]
123 int BigitLength() const { return used_digits_ + exponent_; } in BigitLength() function