Searched refs:kDoubleSignificandSize (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfixed-dtoa.cc121 static const int kDoubleSignificandSize = 53; // Includes the hidden bit. member in namespace:WTF::double_conversion
327 // At most kDoubleSignificandSize bits of the significand are non-zero.
330 if (exponent + kDoubleSignificandSize > 64) {
372 } else if (exponent > -kDoubleSignificandSize) {
/external/chromium_org/v8/src/
H A Dfixed-dtoa.cc99 static const int kDoubleSignificandSize = 53; // Includes the hidden bit. member in namespace:v8::internal
305 // At most kDoubleSignificandSize bits of the significand are non-zero.
308 if (exponent + kDoubleSignificandSize > 64) {
350 } else if (exponent > -kDoubleSignificandSize) {

Completed in 455 milliseconds