OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PowersOfTenCache
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/
cached-powers.h
36
class
PowersOfTenCache
{
cached-powers.cc
137
const int
PowersOfTenCache
::kDecimalExponentDistance =
139
const int
PowersOfTenCache
::kMinDecimalExponent =
141
const int
PowersOfTenCache
::kMaxDecimalExponent =
144
void
PowersOfTenCache
::GetCachedPowerForBinaryExponentRange(
163
void
PowersOfTenCache
::GetCachedPowerForDecimalExponent(int requested_exponent,
strtod.cc
231
ASSERT(exponent <
PowersOfTenCache
::kDecimalExponentDistance);
234
ASSERT(
PowersOfTenCache
::kDecimalExponentDistance == 8);
274
ASSERT(exponent <=
PowersOfTenCache
::kMaxDecimalExponent);
275
if (exponent <
PowersOfTenCache
::kMinDecimalExponent) {
281
PowersOfTenCache
::GetCachedPowerForDecimalExponent(exponent,
fast-dtoa.cc
616
PowersOfTenCache
::GetCachedPowerForBinaryExponentRange(
675
PowersOfTenCache
::GetCachedPowerForBinaryExponentRange(
Completed in 75 milliseconds