HomeSort by relevance Sort by last modified time
    Searched defs:kDenormalExponent (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double.h 102 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;
227 if (exponent < kDenormalExponent) {
230 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
235 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {
  /external/chromium_org/v8/src/
double.h 79 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;
189 if (exponent < kDenormalExponent) {
192 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) {
197 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) {

Completed in 496 milliseconds