Home | History | Annotate | Download | only in stl

Lines Matching refs:atan2

928 inline valarray<_Tp> atan2(const valarray<_Tp>& __x,
933 __tmp[__i] = ::atan2(__x[__i], __y[__i]);
938 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, const _Tp& __c) {
942 __tmp[__i] = ::atan2(__x[__i], __c);
947 inline valarray<_Tp> atan2(const _Tp& __c, const valarray<_Tp>& __x) {
951 __tmp[__i] = ::atan2(__c, __x[__i]);