Home | History | Annotate | Download | only in src

Lines Matching refs:BigitLength

191   EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_);
495 if (BigitLength() < other.BigitLength()) {
505 while (BigitLength() > other.BigitLength()) {
516 ASSERT(BigitLength() == other.BigitLength());
583 int needed_chars = (BigitLength() - 1) * kHexCharsPerBigit +
611 if (index >= BigitLength()) return 0;
620 int bigit_length_a = a.BigitLength();
621 int bigit_length_b = b.BigitLength();
639 if (a.BigitLength() < b.BigitLength()) {
642 if (a.BigitLength() + 1 < c.BigitLength()) return -1;
643 if (a.BigitLength() > c.BigitLength()) return +1;
647 if (a.exponent_ >= b.BigitLength() && a.BigitLength() < c.BigitLength()) {
654 for (int i = c.BigitLength() - 1; i >= min_exponent; --i) {