Searched refs:kDenormalExponent (Results 1 – 2 of 2) sorted by relevance
83 if (IsDenormal()) return kDenormalExponent; in Exponent()142 if (significand_is_zero && v.e() != kDenormalExponent) { in NormalizedBoundaries()168 if (order >= (kDenormalExponent + kSignificandSize)) { in SignificandSizeForOrderOfMagnitude()171 if (order <= kDenormalExponent) return 0; in SignificandSizeForOrderOfMagnitude()172 return order - kDenormalExponent; in SignificandSizeForOrderOfMagnitude()177 static constexpr int kDenormalExponent = -kExponentBias + 1; variable195 if (exponent < kDenormalExponent) { in DiyFpToUint64()198 while (exponent > kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()203 if (exponent == kDenormalExponent && (significand & kHiddenBit) == 0) { in DiyFpToUint64()
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 …]