Searched refs:kExponentMask (Results 1 – 1 of 1) sorted by relevance
39 …int Exponent() const { return static_cast<int>(((u_ & kExponentMask) >> kSignificandSize) - kExpon… in Exponent()41 bool IsNan() const { return (u_ & kExponentMask) == kExponentMask && Significand() != 0; } in IsNan()42 bool IsInf() const { return (u_ & kExponentMask) == kExponentMask && Significand() == 0; } in IsInf()43 bool IsNanOrInf() const { return (u_ & kExponentMask) == kExponentMask; } in IsNanOrInf()44 bool IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; } in IsNormal()45 bool IsZero() const { return (u_ & (kExponentMask | kSignificandMask)) == 0; } in IsZero()65 static const uint64_t kExponentMask = RAPIDJSON_UINT64_C2(0x7FF00000, 0x00000000); variable