Home
last modified time | relevance | path

Searched refs:kMaxDecimalPower (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
Dstrtod.cc55 static const int kMaxDecimalPower = 309; variable
380 ASSERT(buffer.length() + exponent <= kMaxDecimalPower + 1); in BignumStrtod()
387 ASSERT(((kMaxDecimalPower + 1) * 333 / 100) < Bignum::kMaxSignificantBits); in BignumStrtod()
430 if (exponent + trimmed.length() - 1 >= kMaxDecimalPower) { in Strtod()
/external/chromium_org/v8/src/
Dstrtod.cc33 static const int kMaxDecimalPower = 309; variable
361 DCHECK(buffer.length() + exponent <= kMaxDecimalPower + 1); in BignumStrtod()
368 DCHECK(((kMaxDecimalPower + 1) * 333 / 100) < Bignum::kMaxSignificantBits); in BignumStrtod()
411 if (exponent + trimmed.length() - 1 >= kMaxDecimalPower) return V8_INFINITY; in Strtod()