Searched refs:IsNormal (Results 1 – 2 of 2) sorted by relevance
43 bool IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; } in IsNormal() function46 …uint64_t IntegerSignificand() const { return IsNormal() ? Significand() | kHiddenBit : Significand… in IntegerSignificand()47 …int IntegerExponent() const { return (IsNormal() ? Exponent() : kDenormalExponent) - kSignificandS… in IntegerExponent()
392 } while (e.IsNan() || e.IsInf() || !e.IsNormal()); in TEST()