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

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble.h102 if (IsDenormal()) return kDenormalExponent;
167 if (significand_is_zero && v.e() != kDenormalExponent) {
193 if (order >= (kDenormalExponent + kSignificandSize)) {
196 if (order <= kDenormalExponent) return 0;
197 return order - kDenormalExponent;
210 static const int kDenormalExponent = -kExponentBias + 1; member in class:WTF::double_conversion::Double
227 if (exponent < kDenormalExponent) {
230 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
235 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {
/external/chromium_org/v8/src/
H A Ddouble.h79 if (IsDenormal()) return kDenormalExponent;
138 if (significand_is_zero && v.e() != kDenormalExponent) {
164 if (order >= (kDenormalExponent + kSignificandSize)) {
167 if (order <= kDenormalExponent) return 0;
168 return order - kDenormalExponent;
173 static const int kDenormalExponent = -kExponentBias + 1; member in class:v8::internal::Double
189 if (exponent < kDenormalExponent) {
192 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
197 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {

Completed in 165 milliseconds