Home | History | Annotate | Download | only in depr.c.headers

Lines Matching refs:isgreaterequal

263     static_assert((std::is_same<decltype(isgreaterequal((float)0, (float)0)), bool>::value), "");
264 static_assert((std::is_same<decltype(isgreaterequal((float)0, (double)0)), bool>::value), "");
265 static_assert((std::is_same<decltype(isgreaterequal((float)0, (long double)0)), bool>::value), "");
266 static_assert((std::is_same<decltype(isgreaterequal((double)0, (float)0)), bool>::value), "");
267 static_assert((std::is_same<decltype(isgreaterequal((double)0, (double)0)), bool>::value), "");
268 static_assert((std::is_same<decltype(isgreaterequal((double)0, (long double)0)), bool>::value), "");
269 static_assert((std::is_same<decltype(isgreaterequal((long double)0, (float)0)), bool>::value), "");
270 static_assert((std::is_same<decltype(isgreaterequal((long double)0, (double)0)), bool>::value), "");
271 static_assert((std::is_same<decltype(isgreaterequal((long double)0, (long double)0)), bool>::value), "");
272 assert(isgreaterequal(-1.0, 0.F) == false);