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 14 class PowersOfTenCache {
cached-powers.cc 121 const int PowersOfTenCache::kDecimalExponentDistance = 8;
122 const int PowersOfTenCache::kMinDecimalExponent = -348;
123 const int PowersOfTenCache::kMaxDecimalExponent = 340;
125 void PowersOfTenCache::GetCachedPowerForBinaryExponentRange(
146 void PowersOfTenCache::GetCachedPowerForDecimalExponent(int requested_exponent,
strtod.cc 212 DCHECK(exponent < PowersOfTenCache::kDecimalExponentDistance);
215 DCHECK(PowersOfTenCache::kDecimalExponentDistance == 8);
255 DCHECK(exponent <= PowersOfTenCache::kMaxDecimalExponent);
256 if (exponent < PowersOfTenCache::kMinDecimalExponent) {
262 PowersOfTenCache::GetCachedPowerForDecimalExponent(exponent,
fast-dtoa.cc 595 PowersOfTenCache::GetCachedPowerForBinaryExponentRange(
654 PowersOfTenCache::GetCachedPowerForBinaryExponentRange(

Completed in 809 milliseconds