Lines Matching refs:isgreaterequal
61 Ambiguous isgreaterequal(Ambiguous, Ambiguous){ return Ambiguous(); } in isgreaterequal() function
615 #ifdef isgreaterequal in test_isgreaterequal()
616 #error isgreaterequal defined in test_isgreaterequal()
618 static_assert((std::is_same<decltype(isgreaterequal((float)0, (float)0)), bool>::value), ""); in test_isgreaterequal()
619 static_assert((std::is_same<decltype(isgreaterequal((float)0, (double)0)), bool>::value), ""); in test_isgreaterequal()
620 …static_assert((std::is_same<decltype(isgreaterequal((float)0, (long double)0)), bool>::value), ""); in test_isgreaterequal()
621 static_assert((std::is_same<decltype(isgreaterequal((double)0, (float)0)), bool>::value), ""); in test_isgreaterequal()
622 static_assert((std::is_same<decltype(isgreaterequal((double)0, (double)0)), bool>::value), ""); in test_isgreaterequal()
623 static_assert((std::is_same<decltype(isgreaterequal(0, (double)0)), bool>::value), ""); in test_isgreaterequal()
624 …static_assert((std::is_same<decltype(isgreaterequal((double)0, (long double)0)), bool>::value), ""… in test_isgreaterequal()
625 …static_assert((std::is_same<decltype(isgreaterequal((long double)0, (float)0)), bool>::value), ""); in test_isgreaterequal()
626 …static_assert((std::is_same<decltype(isgreaterequal((long double)0, (double)0)), bool>::value), ""… in test_isgreaterequal()
627 …static_assert((std::is_same<decltype(isgreaterequal((long double)0, (long double)0)), bool>::value… in test_isgreaterequal()
628 …static_assert((std::is_same<decltype(isgreaterequal(Ambiguous(), Ambiguous())), Ambiguous>::value)… in test_isgreaterequal()
629 assert(isgreaterequal(-1.0, 0.F) == false); in test_isgreaterequal()