Home | History | Annotate | Download | only in include

Lines Matching full:atan2

62 floating_point atan2 (arithmetic y, arithmetic x);
722 // atan2
724 using ::atan2;
728 inline _LIBCPP_INLINE_VISIBILITY float atan2(float __lcpp_y, float __lcpp_x) _NOEXCEPT {return atan2f(__lcpp_y, __lcpp_x);}
729 inline _LIBCPP_INLINE_VISIBILITY long double atan2(long double __lcpp_y, long double __lcpp_x) _NOEXCEPT {return atan2l(__lcpp_y, __lcpp_x);}
740 atan2(_A1 __lcpp_y, _A2 __lcpp_x) _NOEXCEPT
745 return atan2((__result_type)__lcpp_y, (__result_type)__lcpp_x);