Searched refs:kDenormalExponent (Results 1 – 6 of 6) sorted by relevance
126 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; variable257 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 …]
129 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 …]
115 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 …]
63 constexpr int kDenormalExponent = 1 - kExponentBias; in make_float() local75 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() local127 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()