Lines Matching refs:fdim
76 Ambiguous fdim(Ambiguous, Ambiguous){ return Ambiguous(); } in fdim() function
999 static_assert((std::is_same<decltype(std::fdim((float)0, (float)0)), float>::value), ""); in test_fdim()
1000 static_assert((std::is_same<decltype(std::fdim((bool)0, (float)0)), double>::value), ""); in test_fdim()
1001 …static_assert((std::is_same<decltype(std::fdim((unsigned short)0, (double)0)), double>::value), ""… in test_fdim()
1002 …static_assert((std::is_same<decltype(std::fdim((int)0, (long double)0)), long double>::value), ""); in test_fdim()
1003 … static_assert((std::is_same<decltype(std::fdim((float)0, (unsigned int)0)), double>::value), ""); in test_fdim()
1004 static_assert((std::is_same<decltype(std::fdim((double)0, (long)0)), double>::value), ""); in test_fdim()
1005 …static_assert((std::is_same<decltype(std::fdim((long double)0, (unsigned long)0)), long double>::v… in test_fdim()
1006 static_assert((std::is_same<decltype(std::fdim((int)0, (long long)0)), double>::value), ""); in test_fdim()
1007 …static_assert((std::is_same<decltype(std::fdim((int)0, (unsigned long long)0)), double>::value), "… in test_fdim()
1008 static_assert((std::is_same<decltype(std::fdim((double)0, (double)0)), double>::value), ""); in test_fdim()
1009 …static_assert((std::is_same<decltype(std::fdim((long double)0, (long double)0)), long double>::val… in test_fdim()
1010 static_assert((std::is_same<decltype(std::fdim((float)0, (double)0)), double>::value), ""); in test_fdim()
1011 …static_assert((std::is_same<decltype(std::fdim((float)0, (long double)0)), long double>::value), "… in test_fdim()
1012 …static_assert((std::is_same<decltype(std::fdim((double)0, (long double)0)), long double>::value), … in test_fdim()
1015 static_assert((std::is_same<decltype(std::fdim((int)0, (int)0)), double>::value), ""); in test_fdim()
1016 static_assert((std::is_same<decltype(fdim(Ambiguous(), Ambiguous())), Ambiguous>::value), ""); in test_fdim()
1017 assert(std::fdim(1,0) == 1); in test_fdim()