OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kDecimalExponentDistance
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/
cached-powers.h
39
// cached numbers will differ by
kDecimalExponentDistance
.
40
static const int
kDecimalExponentDistance
;
56
// requested_exponent < kMaxDecimalExponent +
kDecimalExponentDistance
.
cached-powers.cc
140
const int PowersOfTenCache::
kDecimalExponentDistance
= 8;
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
);
strtod.cc
230
// The given exponent must be in the range [1;
kDecimalExponentDistance
[.
233
ASSERT(exponent < PowersOfTenCache::
kDecimalExponentDistance
);
236
ASSERT(PowersOfTenCache::
kDecimalExponentDistance
== 8);
Completed in 23 milliseconds