Lines Matching refs:fdim

75 Ambiguous fdim(Ambiguous, Ambiguous){ return Ambiguous(); }  in fdim()  function
968 static_assert((std::is_same<decltype(fdim((float)0, (float)0)), float>::value), ""); in test_fdim()
969 static_assert((std::is_same<decltype(fdim((bool)0, (float)0)), double>::value), ""); in test_fdim()
970 static_assert((std::is_same<decltype(fdim((unsigned short)0, (double)0)), double>::value), ""); in test_fdim()
971 static_assert((std::is_same<decltype(fdim((int)0, (long double)0)), long double>::value), ""); in test_fdim()
972 static_assert((std::is_same<decltype(fdim((float)0, (unsigned int)0)), double>::value), ""); in test_fdim()
973 static_assert((std::is_same<decltype(fdim((double)0, (long)0)), double>::value), ""); in test_fdim()
974 …static_assert((std::is_same<decltype(fdim((long double)0, (unsigned long)0)), long double>::value)… in test_fdim()
975 static_assert((std::is_same<decltype(fdim((int)0, (long long)0)), double>::value), ""); in test_fdim()
976 static_assert((std::is_same<decltype(fdim((int)0, (unsigned long long)0)), double>::value), ""); in test_fdim()
977 static_assert((std::is_same<decltype(fdim((double)0, (double)0)), double>::value), ""); in test_fdim()
978 …static_assert((std::is_same<decltype(fdim((long double)0, (long double)0)), long double>::value), … in test_fdim()
979 static_assert((std::is_same<decltype(fdim((float)0, (double)0)), double>::value), ""); in test_fdim()
980 static_assert((std::is_same<decltype(fdim((float)0, (long double)0)), long double>::value), ""); in test_fdim()
981 … static_assert((std::is_same<decltype(fdim((double)0, (long double)0)), long double>::value), ""); in test_fdim()
984 static_assert((std::is_same<decltype(fdim((int)0, (int)0)), double>::value), ""); in test_fdim()
985 static_assert((std::is_same<decltype(fdim(Ambiguous(), Ambiguous())), Ambiguous>::value), ""); in test_fdim()
986 assert(fdim(1,0) == 1); in test_fdim()