Searched defs:kExponentBitMask (Results 1 - 1 of 1) sorted by relevance

/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h257 static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); member in class:testing::internal::FloatingPoint
294 return ReinterpretBits(kExponentBitMask);
303 Bits exponent_bits() const { return kExponentBitMask & u_.bits_; }
315 return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0);

Completed in 28 milliseconds