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
17
// cached numbers will differ by
kDecimalExponentDistance
.
18
static const int
kDecimalExponentDistance
;
34
// requested_exponent < kMaxDecimalExponent +
kDecimalExponentDistance
.
cached-powers.cc
121
const int PowersOfTenCache::
kDecimalExponentDistance
= 8;
136
(foo + static_cast<int>(k) - 1) /
kDecimalExponentDistance
+ 1;
150
DCHECK(requested_exponent < kMaxDecimalExponent +
kDecimalExponentDistance
);
152
(requested_exponent + kCachedPowersOffset) /
kDecimalExponentDistance
;
157
DCHECK(requested_exponent < *found_exponent +
kDecimalExponentDistance
);
strtod.cc
209
// The given exponent must be in the range [1;
kDecimalExponentDistance
[.
212
DCHECK(exponent < PowersOfTenCache::
kDecimalExponentDistance
);
215
DCHECK(PowersOfTenCache::
kDecimalExponentDistance
== 8);
Completed in 50 milliseconds