Lines Matching refs:__y
35 … _LIBCPP_HIDE_FROM_ABI float hypot(float __x, float __y) _NOEXCEPT { return __builtin_hypotf(__x, … in hypot() argument
38 _LIBCPP_HIDE_FROM_ABI double hypot(double __x, double __y) _NOEXCEPT { in hypot() argument
39 return __builtin_hypot(__x, __y); in hypot()
42 inline _LIBCPP_HIDE_FROM_ABI long double hypot(long double __x, long double __y) _NOEXCEPT { in hypot() argument
43 return __builtin_hypotl(__x, __y); in hypot()
47 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type hypot(_A1 __x, _A2 __y) _NOEXCEPT { in hypot() argument
50 return __math::hypot((__result_type)__x, (__result_type)__y); in hypot()
59 _LIBCPP_HIDE_FROM_ABI _Real __hypot(_Real __x, _Real __y, _Real __z) { in __hypot() argument
66 …const _Real __max_abs = std::max(__math::fabs(__x), std::max(__math::fabs(__y), __math::fabs(__z))… in __hypot()
76 __y *= __scale; in __hypot()
80 return __math::sqrt(__x * __x + __y * __y + __z * __z) / __scale; in __hypot()
83 … _LIBCPP_HIDE_FROM_ABI float hypot(float __x, float __y, float __z) { return __math::__hypot(__x, … in hypot() argument
85 …BCPP_HIDE_FROM_ABI double hypot(double __x, double __y, double __z) { return __math::__hypot(__x, … in hypot() argument
87 inline _LIBCPP_HIDE_FROM_ABI long double hypot(long double __x, long double __y, long double __z) { in hypot() argument
88 return __math::__hypot(__x, __y, __z); in hypot()
95 _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2, _A3>::type hypot(_A1 __x, _A2 __y, _A3 __z) _NOE… in hypot() argument
100 …static_cast<__result_type>(__x), static_cast<__result_type>(__y), static_cast<__result_type>(__z)); in hypot()