Sacado Package Browser (Single Doxygen Collection)
Version of the Day
|
#include <gtest-internal.h>
Classes | |
union | FloatingPointUnion |
Public Types | |
typedef TypeWithSize< sizeof(RawType)> ::UInt | Bits |
Public Member Functions | |
FloatingPoint (const RawType &x) | |
const Bits & | bits () const |
Bits | exponent_bits () const |
Bits | fraction_bits () const |
Bits | sign_bit () const |
bool | is_nan () const |
bool | AlmostEquals (const FloatingPoint &rhs) const |
Static Public Member Functions | |
static RawType | ReinterpretBits (const Bits bits) |
static RawType | Infinity () |
Static Public Attributes | |
static const size_t | kBitCount = 8 * sizeof(RawType) |
static const size_t | kFractionBitCount |
static const size_t | kExponentBitCount = kBitCount - 1 - kFractionBitCount |
static const Bits | kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1) |
static const Bits | kFractionBitMask |
static const Bits | kExponentBitMask = ~(kSignBitMask | kFractionBitMask) |
static const uint32_t | kMaxUlps = 4 |
Static Private Member Functions | |
static Bits | SignAndMagnitudeToBiased (const Bits &sam) |
static Bits | DistanceBetweenSignAndMagnitudeNumbers (const Bits &sam1, const Bits &sam2) |
Private Attributes | |
FloatingPointUnion | u_ |
Definition at line 245 of file gtest-internal.h.
typedef TypeWithSize<sizeof(RawType)>::UInt testing::internal::FloatingPoint< RawType >::Bits |
Definition at line 249 of file gtest-internal.h.
|
inlineexplicit |
Definition at line 293 of file gtest-internal.h.
|
inlinestatic |
Definition at line 300 of file gtest-internal.h.
|
inlinestatic |
Definition at line 307 of file gtest-internal.h.
|
inline |
Definition at line 312 of file gtest-internal.h.
|
inline |
Definition at line 315 of file gtest-internal.h.
|
inline |
Definition at line 318 of file gtest-internal.h.
|
inline |
Definition at line 321 of file gtest-internal.h.
|
inline |
Definition at line 324 of file gtest-internal.h.
|
inline |
Definition at line 336 of file gtest-internal.h.
|
inlinestaticprivate |
Definition at line 367 of file gtest-internal.h.
|
inlinestaticprivate |
Definition at line 379 of file gtest-internal.h.
|
static |
Definition at line 254 of file gtest-internal.h.
|
static |
Definition at line 257 of file gtest-internal.h.
|
static |
Definition at line 261 of file gtest-internal.h.
|
static |
Definition at line 264 of file gtest-internal.h.
|
static |
Definition at line 267 of file gtest-internal.h.
|
static |
Definition at line 271 of file gtest-internal.h.
|
static |
Definition at line 285 of file gtest-internal.h.
|
private |
Definition at line 386 of file gtest-internal.h.