Home
last modified time | relevance | path

Searched refs:BigitLength (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/
Dbignum.cc169 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()
[all …]
Dbignum.h103 int BigitLength() const { return used_digits_ + exponent_; } in BigitLength() function
/external/icu/icu4c/source/i18n/
Ddouble-conversion-bignum.cpp203 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_); in AddBignum()
507 if (BigitLength() < other.BigitLength()) { in DivideModuloIntBignum()
517 while (BigitLength() > other.BigitLength()) { in DivideModuloIntBignum()
529 ASSERT(BigitLength() == other.BigitLength()); in DivideModuloIntBignum()
598 int needed_chars = (BigitLength() - 1) * kHexCharsPerBigit + in ToHexString()
626 if (index >= BigitLength()) return 0; in BigitAt()
635 int bigit_length_a = a.BigitLength(); in Compare()
636 int bigit_length_b = b.BigitLength(); in Compare()
654 if (a.BigitLength() < b.BigitLength()) { in PlusCompare()
657 if (a.BigitLength() + 1 < c.BigitLength()) return -1; in PlusCompare()
[all …]
Ddouble-conversion-bignum.h141 int BigitLength() const { return used_digits_ + exponent_; } in BigitLength() function