Searched refs:BigitLength (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/WTF-7600.1.24/wtf/dtoa/
H A Dbignum.cc193 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_);
497 if (BigitLength() < other.BigitLength()) {
507 while (BigitLength() > other.BigitLength()) {
518 ASSERT(BigitLength() == other.BigitLength());
585 int needed_chars = (BigitLength() - 1) * kHexCharsPerBigit +
613 if (index >= BigitLength()) retur
[all...]
H A Dbignum.h125 // BigitLength includes the "hidden" digits encoded in the exponent.
126 int BigitLength() const { return used_digits_ + exponent_; } function in class:WTF::double_conversion::Bignum

Completed in 207 milliseconds