HomeSort by relevance Sort by last modified time
    Searched refs:kMaxExponentialDigits (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.h 46 // parameter > kMaxExponentialDigits then the function returns false.
47 static const int kMaxExponentialDigits = 120;
222 // - 'requested_digits' > kMaxExponentialDigits.
224 // kMaxExponentialDigits + 8 characters (the sign, the digit before the
double-conversion.cc 245 if (requested_digits > kMaxExponentialDigits) return false;
250 const int kDecimalRepCapacity = kMaxExponentialDigits + 2;

Completed in 473 milliseconds