Lines Matching refs:hypot
81 Ambiguous hypot(Ambiguous, Ambiguous){ return Ambiguous(); } in hypot() function
82 Ambiguous hypot(Ambiguous, Ambiguous, Ambiguous){ return Ambiguous(); } in hypot() function
1075 static_assert((std::is_same<decltype(std::hypot((float)0, (float)0)), float>::value), ""); in test_hypot()
1076 static_assert((std::is_same<decltype(std::hypot((bool)0, (float)0)), double>::value), ""); in test_hypot()
1077 …static_assert((std::is_same<decltype(std::hypot((unsigned short)0, (double)0)), double>::value), "… in test_hypot()
1078 …static_assert((std::is_same<decltype(std::hypot((int)0, (long double)0)), long double>::value), ""… in test_hypot()
1079 … static_assert((std::is_same<decltype(std::hypot((float)0, (unsigned int)0)), double>::value), ""); in test_hypot()
1080 static_assert((std::is_same<decltype(std::hypot((double)0, (long)0)), double>::value), ""); in test_hypot()
1081 …static_assert((std::is_same<decltype(std::hypot((long double)0, (unsigned long)0)), long double>::… in test_hypot()
1082 static_assert((std::is_same<decltype(std::hypot((int)0, (long long)0)), double>::value), ""); in test_hypot()
1083 …static_assert((std::is_same<decltype(std::hypot((int)0, (unsigned long long)0)), double>::value), … in test_hypot()
1084 static_assert((std::is_same<decltype(std::hypot((double)0, (double)0)), double>::value), ""); in test_hypot()
1085 …static_assert((std::is_same<decltype(std::hypot((long double)0, (long double)0)), long double>::va… in test_hypot()
1086 static_assert((std::is_same<decltype(std::hypot((float)0, (double)0)), double>::value), ""); in test_hypot()
1087 …static_assert((std::is_same<decltype(std::hypot((float)0, (long double)0)), long double>::value), … in test_hypot()
1088 …static_assert((std::is_same<decltype(std::hypot((double)0, (long double)0)), long double>::value),… in test_hypot()
1091 static_assert((std::is_same<decltype(std::hypot((int)0, (int)0)), double>::value), ""); in test_hypot()
1092 static_assert((std::is_same<decltype(hypot(Ambiguous(), Ambiguous())), Ambiguous>::value), ""); in test_hypot()
1093 assert(std::hypot(3,4) == 5); in test_hypot()
1096 …static_assert((std::is_same<decltype(std::hypot((float)0, (float)0, (float)0)), float>::value), ""… in test_hypot()
1097 …static_assert((std::is_same<decltype(std::hypot((float)0, (bool)0, (float)0)), double>::value), ""… in test_hypot()
1098 …static_assert((std::is_same<decltype(std::hypot((float)0, (unsigned short)0, (double)0)), double>:… in test_hypot()
1099 …static_assert((std::is_same<decltype(std::hypot((float)0, (int)0, (long double)0)), long double>::… in test_hypot()
1100 … static_assert((std::is_same<decltype(std::hypot((float)0, (unsigned int)0)), double>::value), ""); in test_hypot()
1101 …static_assert((std::is_same<decltype(std::hypot((float)0, (double)0, (long)0)), double>::value), "… in test_hypot()
1102 …static_assert((std::is_same<decltype(std::hypot((float)0, (long double)0, (unsigned long)0)), long… in test_hypot()
1103 …static_assert((std::is_same<decltype(std::hypot((float)0, (int)0, (long long)0)), double>::value),… in test_hypot()
1104 …static_assert((std::is_same<decltype(std::hypot((float)0, (int)0, (unsigned long long)0)), double>… in test_hypot()
1105 …static_assert((std::is_same<decltype(std::hypot((float)0, (double)0, (double)0)), double>::value),… in test_hypot()
1106 …static_assert((std::is_same<decltype(std::hypot((float)0, (long double)0, (long double)0)), long d… in test_hypot()
1107 …static_assert((std::is_same<decltype(std::hypot((float)0, (float)0, (double)0)), double>::value), … in test_hypot()
1108 …static_assert((std::is_same<decltype(std::hypot((float)0, (float)0, (long double)0)), long double>… in test_hypot()
1109 …static_assert((std::is_same<decltype(std::hypot((float)0, (double)0, (long double)0)), long double… in test_hypot()
1110 static_assert((std::is_same<decltype(std::hypot((int)0, (int)0, (int)0)), double>::value), ""); in test_hypot()
1111 …static_assert((std::is_same<decltype(hypot(Ambiguous(), Ambiguous(), Ambiguous())), Ambiguous>::va… in test_hypot()
1113 assert(std::hypot(2,3,6) == 7); in test_hypot()
1114 assert(std::hypot(1,4,8) == 9); in test_hypot()