Home
last modified time | relevance | path

Searched refs:kDenormalExponent (Results 1 – 6 of 6) sorted by relevance

/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-ieee.h126 if (IsDenormal()) return kDenormalExponent; in Exponent()
211 return physical_significand_is_zero && (Exponent() != kDenormalExponent); in LowerBoundaryIsCloser()
223 if (order >= (kDenormalExponent + kSignificandSize)) { in SignificandSizeForOrderOfMagnitude()
226 if (order <= kDenormalExponent) return 0; in SignificandSizeForOrderOfMagnitude()
227 return order - kDenormalExponent; in SignificandSizeForOrderOfMagnitude()
240 static const int kDenormalExponent = -kExponentBias + 1; variable
257 if (exponent < kDenormalExponent) { in DiyFpToUint64()
260 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
265 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
304 if (IsDenormal()) return kDenormalExponent; in Exponent()
[all …]
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-ieee.h129 if (IsDenormal()) return kDenormalExponent; in Exponent()
223 return physical_significand_is_zero && (Exponent() != kDenormalExponent); in LowerBoundaryIsCloser()
235 if (order >= (kDenormalExponent + kSignificandSize)) { in SignificandSizeForOrderOfMagnitude()
238 if (order <= kDenormalExponent) return 0; in SignificandSizeForOrderOfMagnitude()
239 return order - kDenormalExponent; in SignificandSizeForOrderOfMagnitude()
251 static const int kDenormalExponent = -kExponentBias + 1;
267 if (exponent < kDenormalExponent) { in DiyFpToUint64()
270 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
275 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
315 if (IsDenormal()) return kDenormalExponent; in Exponent()
[all …]
/third_party/node/deps/icu-small/source/i18n/
Ddouble-conversion-ieee.h129 if (IsDenormal()) return kDenormalExponent; in Exponent()
223 return physical_significand_is_zero && (Exponent() != kDenormalExponent); in LowerBoundaryIsCloser()
235 if (order >= (kDenormalExponent + kSignificandSize)) { in SignificandSizeForOrderOfMagnitude()
238 if (order <= kDenormalExponent) return 0; in SignificandSizeForOrderOfMagnitude()
239 return order - kDenormalExponent; in SignificandSizeForOrderOfMagnitude()
251 static const int kDenormalExponent = -kExponentBias + 1;
267 if (exponent < kDenormalExponent) { in DiyFpToUint64()
270 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
275 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
315 if (IsDenormal()) return kDenormalExponent; in Exponent()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-ieee.h129 if (IsDenormal()) return kDenormalExponent; in Exponent()
223 return physical_significand_is_zero && (Exponent() != kDenormalExponent); in LowerBoundaryIsCloser()
235 if (order >= (kDenormalExponent + kSignificandSize)) { in SignificandSizeForOrderOfMagnitude()
238 if (order <= kDenormalExponent) return 0; in SignificandSizeForOrderOfMagnitude()
239 return order - kDenormalExponent; in SignificandSizeForOrderOfMagnitude()
251 static const int kDenormalExponent = -kExponentBias + 1;
267 if (exponent < kDenormalExponent) { in DiyFpToUint64()
270 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
275 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
315 if (IsDenormal()) return kDenormalExponent; in Exponent()
[all …]
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Dieee.h115 if (IsDenormal()) return kDenormalExponent; in Exponent()
209 return physical_significand_is_zero && (Exponent() != kDenormalExponent); in LowerBoundaryIsCloser()
221 if (order >= (kDenormalExponent + kSignificandSize)) { in SignificandSizeForOrderOfMagnitude()
224 if (order <= kDenormalExponent) return 0; in SignificandSizeForOrderOfMagnitude()
225 return order - kDenormalExponent; in SignificandSizeForOrderOfMagnitude()
237 static const int kDenormalExponent = -kExponentBias + 1;
253 if (exponent < kDenormalExponent) { in DiyFpToUint64()
256 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
261 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
301 if (IsDenormal()) return kDenormalExponent; in Exponent()
[all …]
/third_party/json/test/src/
Dunit-to_chars.cpp63 constexpr int kDenormalExponent = 1 - kExponentBias; in make_float() local
75 if (e < kDenormalExponent) in make_float()
79 while (e > kDenormalExponent && (f & kHiddenBit) == 0) in make_float()
85 uint64_t biased_exponent = (e == kDenormalExponent && (f & kHiddenBit) == 0) in make_float()
115 constexpr int kDenormalExponent = 1 - kExponentBias; in make_double() local
127 if (e < kDenormalExponent) in make_double()
131 while (e > kDenormalExponent && (f & kHiddenBit) == 0) in make_double()
137 uint64_t biased_exponent = (e == kDenormalExponent && (f & kHiddenBit) == 0) in make_double()