Bits 7272 modules/ts/include/opencv2/ts/ts_gtest.h static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1); Bits 7275 modules/ts/include/opencv2/ts/ts_gtest.h static const Bits kFractionBitMask = Bits 7276 modules/ts/include/opencv2/ts/ts_gtest.h ~static_cast<Bits>(0) >> (kExponentBitCount + 1); Bits 7279 modules/ts/include/opencv2/ts/ts_gtest.h static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); Bits 7308 modules/ts/include/opencv2/ts/ts_gtest.h static RawType ReinterpretBits(const Bits bits) { Bits 7325 modules/ts/include/opencv2/ts/ts_gtest.h const Bits &bits() const { return u_.bits_; } Bits 7328 modules/ts/include/opencv2/ts/ts_gtest.h Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } Bits 7331 modules/ts/include/opencv2/ts/ts_gtest.h Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } Bits 7334 modules/ts/include/opencv2/ts/ts_gtest.h Bits sign_bit() const { return kSignBitMask & u_.bits_; } Bits 7362 modules/ts/include/opencv2/ts/ts_gtest.h Bits bits_; // The bits that represent the number. Bits 7380 modules/ts/include/opencv2/ts/ts_gtest.h static Bits SignAndMagnitudeToBiased(const Bits &sam) { Bits 7392 modules/ts/include/opencv2/ts/ts_gtest.h static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1, Bits 7393 modules/ts/include/opencv2/ts/ts_gtest.h const Bits &sam2) { Bits 7394 modules/ts/include/opencv2/ts/ts_gtest.h const Bits biased1 = SignAndMagnitudeToBiased(sam1); Bits 7395 modules/ts/include/opencv2/ts/ts_gtest.h const Bits biased2 = SignAndMagnitudeToBiased(sam2);