Lines Matching refs:kDenormalExponent
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()
409 return physical_significand_is_zero && (Exponent() != kDenormalExponent); in LowerBoundaryIsCloser()
424 static const int kDenormalExponent = -kExponentBias + 1; variable