Home
last modified time | relevance | path

Searched refs:Significand (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/
H A Dieee754.h38 uint64_t Significand() const { return u_ & kSignificandMask; } in Significand() function
41 bool IsNan() const { return (u_ & kExponentMask) == kExponentMask && Significand() != 0; } in IsNan()
42 bool IsInf() const { return (u_ & kExponentMask) == kExponentMask && Significand() == 0; } in IsInf()
44 bool IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; } in IsNormal()
47 …nt64_t IntegerSignificand() const { return IsNormal() ? Significand() | kHiddenBit : Significand()… in IntegerSignificand()
H A Dstrtod.h215 if (a.Significand() & 1) in StrtodBigInteger()