OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PowersOfTenCache
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
cached-powers.h
37
class
PowersOfTenCache
{
cached-powers.cc
53
int
PowersOfTenCache
::kDecimalExponentDistance = 1;
54
int
PowersOfTenCache
::kMinDecimalExponent = 1;
55
int
PowersOfTenCache
::kMaxDecimalExponent = 1;
152
PowersOfTenCache
::kDecimalExponentDistance = kCachedPowers[1].decimal_exponent - kCachedPowers[0].decimal_exponent;
153
PowersOfTenCache
::kMinDecimalExponent = kCachedPowers[0].decimal_exponent;
154
PowersOfTenCache
::kMaxDecimalExponent = kCachedPowers[kCachedPowersLength - 1].decimal_exponent;
157
void
PowersOfTenCache
::GetCachedPowerForBinaryExponentRange(
177
void
PowersOfTenCache
::GetCachedPowerForDecimalExponent(int requested_exponent,
strtod.cc
232
ASSERT(exponent <
PowersOfTenCache
::kDecimalExponentDistance);
235
ASSERT(
PowersOfTenCache
::kDecimalExponentDistance == 8);
275
ASSERT(exponent <=
PowersOfTenCache
::kMaxDecimalExponent);
276
if (exponent <
PowersOfTenCache
::kMinDecimalExponent) {
282
PowersOfTenCache
::GetCachedPowerForDecimalExponent(exponent,
fast-dtoa.cc
619
PowersOfTenCache
::GetCachedPowerForBinaryExponentRange(
[
all
...]
/external/chromium_org/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(
/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 5016 milliseconds