Searched refs:kDecimalExponentDistance (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dcached-powers.h41 // cached numbers will differ by kDecimalExponentDistance.
42 static const int kDecimalExponentDistance; member in class:WTF::double_conversion::PowersOfTenCache
58 // requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance.
H A Dcached-powers.cc139 const int PowersOfTenCache::kDecimalExponentDistance = 8; // kCachedPowers[1].decimal_exponent - kCachedPowers[0].decimal_exponent member in class:WTF::double_conversion::PowersOfTenCache
151 ASSERT(PowersOfTenCache::kDecimalExponentDistance == (kCachedPowers[1].decimal_exponent - kCachedPowers[0].decimal_exponent));
169 (foo + static_cast<int>(k) - 1) / kDecimalExponentDistance + 1;
183 ASSERT(requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance);
188 (requested_exponent + kCachedPowersOffset) / kDecimalExponentDistance;
193 ASSERT(requested_exponent < *found_exponent + kDecimalExponentDistance);
H A Dstrtod.cc229 // The given exponent must be in the range [1; kDecimalExponentDistance[.
232 ASSERT(exponent < PowersOfTenCache::kDecimalExponentDistance);
235 ASSERT(PowersOfTenCache::kDecimalExponentDistance == 8);
/external/chromium_org/v8/src/
H A Dcached-powers.h39 // cached numbers will differ by kDecimalExponentDistance.
40 static const int kDecimalExponentDistance; member in class:v8::internal::PowersOfTenCache
56 // requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance.
H A Dcached-powers.cc140 const int PowersOfTenCache::kDecimalExponentDistance = 8; member in class:v8::internal::PowersOfTenCache
155 (foo + static_cast<int>(k) - 1) / kDecimalExponentDistance + 1;
169 ASSERT(requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance);
171 (requested_exponent + kCachedPowersOffset) / kDecimalExponentDistance;
176 ASSERT(requested_exponent < *found_exponent + kDecimalExponentDistance);
H A Dstrtod.cc230 // The given exponent must be in the range [1; kDecimalExponentDistance[.
233 ASSERT(exponent < PowersOfTenCache::kDecimalExponentDistance);
236 ASSERT(PowersOfTenCache::kDecimalExponentDistance == 8);
/external/v8/src/
H A Dcached-powers.h39 // cached numbers will differ by kDecimalExponentDistance.
40 static const int kDecimalExponentDistance; member in class:v8::internal::PowersOfTenCache
56 // requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance.
H A Dcached-powers.cc140 const int PowersOfTenCache::kDecimalExponentDistance = 8; member in class:v8::internal::PowersOfTenCache
155 (foo + static_cast<int>(k) - 1) / kDecimalExponentDistance + 1;
169 ASSERT(requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance);
171 (requested_exponent + kCachedPowersOffset) / kDecimalExponentDistance;
176 ASSERT(requested_exponent < *found_exponent + kDecimalExponentDistance);
H A Dstrtod.cc230 // The given exponent must be in the range [1; kDecimalExponentDistance[.
233 ASSERT(exponent < PowersOfTenCache::kDecimalExponentDistance);
236 ASSERT(PowersOfTenCache::kDecimalExponentDistance == 8);

Completed in 219 milliseconds