Searched refs:floatingPointIsUnordered (Results 1 – 5 of 5) sorted by relevance
261 CPPUNIT_ASSERT( CPPUNIT_NS::floatingPointIsUnordered( nan ) ); in testAssertDoubleNonFinite()262 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( inf ) ); in testAssertDoubleNonFinite()263 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( -inf ) ); in testAssertDoubleNonFinite()264 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( 1.0 ) ); in testAssertDoubleNonFinite()265 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( 1.5 ) ); in testAssertDoubleNonFinite()266 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( 2.0 ) ); in testAssertDoubleNonFinite()267 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( 2.5 ) ); in testAssertDoubleNonFinite()268 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( 0.0 ) ); in testAssertDoubleNonFinite()269 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( -1.0 ) ); in testAssertDoubleNonFinite()270 CPPUNIT_ASSERT( !CPPUNIT_NS::floatingPointIsUnordered( -2.0 ) ); in testAssertDoubleNonFinite()
32 inline bool floatingPointIsUnordered( double x ) in floatingPointIsUnordered() function53 return testInf == 0.0 && !floatingPointIsUnordered(testInf); in floatingPointIsFinite()
27 if ( floatingPointIsUnordered(expected) || floatingPointIsUnordered(actual) ) in assertDoubleEquals()