Searched refs:kExponentMask (Results 1 – 2 of 2) 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 IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; } in IsNormal()44 bool IsZero() const { return (u_ & (kExponentMask | kSignificandMask)) == 0; } in IsZero()64 static const uint64_t kExponentMask = RAPIDJSON_UINT64_C2(0x7FF00000, 0x00000000); variable
26 static const uint64_t kExponentMask = RAPIDJSON_UINT64_C2(0x7FF00000, 0x00000000); in TEST() local40 const int bExp = ((u.u & kExponentMask) >> kSignificandSize) - kExponentBias - kSignificandSize; in TEST()