Home
last modified time | relevance | path

Searched refs:kDpHiddenBit (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 Ddiyfp.h57 f = significand + kDpHiddenBit; in DiyFp()
121 while (!(res.f & (kDpHiddenBit << 1))) { in NormalizeBoundary()
132 DiyFp mi = (f == kDpHiddenBit) ? DiyFp((f << 2) - 1, e - 2) : DiyFp((f << 1) - 1, e - 1); in NormalizedBoundaries()
144 const uint64_t be = (e == kDpDenormalExponent && (f & kDpHiddenBit) == 0) ? 0 : in ToDouble()
158 static const uint64_t kDpHiddenBit = RAPIDJSON_UINT64_C2(0x00100000, 0x00000000); member
H A Dstrtod.h195 if (rounded.f & (DiyFp::kDpHiddenBit << 1)) { // rounding overflows mantissa (issue #340) in StrtodDiyFp()