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

  /external/v8/src/
cached-powers.h 36 class PowersOfTenCache {
cached-powers.cc 140 const int PowersOfTenCache::kDecimalExponentDistance = 8;
141 const int PowersOfTenCache::kMinDecimalExponent = -348;
142 const int PowersOfTenCache::kMaxDecimalExponent = 340;
144 void PowersOfTenCache::GetCachedPowerForBinaryExponentRange(
165 void PowersOfTenCache::GetCachedPowerForDecimalExponent(int requested_exponent,
strtod.cc 233 ASSERT(exponent < PowersOfTenCache::kDecimalExponentDistance);
236 ASSERT(PowersOfTenCache::kDecimalExponentDistance == 8);
276 ASSERT(exponent <= PowersOfTenCache::kMaxDecimalExponent);
277 if (exponent < PowersOfTenCache::kMinDecimalExponent) {
283 PowersOfTenCache::GetCachedPowerForDecimalExponent(exponent,
fast-dtoa.cc 618 PowersOfTenCache::GetCachedPowerForBinaryExponentRange(
677 PowersOfTenCache::GetCachedPowerForBinaryExponentRange(

Completed in 236 milliseconds