Lines Matching refs:BigitLength
169 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_); in AddBignum()
473 if (BigitLength() < other.BigitLength()) { in DivideModuloIntBignum()
483 while (BigitLength() > other.BigitLength()) { in DivideModuloIntBignum()
494 DCHECK(BigitLength() == other.BigitLength()); in DivideModuloIntBignum()
554 int needed_chars = (BigitLength() - 1) * kHexCharsPerBigit + in ToHexString()
582 if (index >= BigitLength()) return 0; in BigitAt()
591 int bigit_length_a = a.BigitLength(); in Compare()
592 int bigit_length_b = b.BigitLength(); in Compare()
610 if (a.BigitLength() < b.BigitLength()) { in PlusCompare()
613 if (a.BigitLength() + 1 < c.BigitLength()) return -1; in PlusCompare()
614 if (a.BigitLength() > c.BigitLength()) return +1; in PlusCompare()
618 if (a.exponent_ >= b.BigitLength() && a.BigitLength() < c.BigitLength()) { in PlusCompare()
625 for (int i = c.BigitLength() - 1; i >= min_exponent; --i) { in PlusCompare()