Home
last modified time | relevance | path

Searched defs:atan2 (Results 1 – 8 of 8) sorted by relevance

/llvm-project/libcxx/include/__math/
H A Dinverse_trigonometric_functions.h77 inline _LIBCPP_HIDE_FROM_ABI float atan2(float __y, float __x) _NOEXCEPT { return __builtin_atan2f(… in atan2() function
80 _LIBCPP_HIDE_FROM_ABI double atan2(double __x, double __y) _NOEXCEPT { in atan2() function
84 inline _LIBCPP_HIDE_FROM_ABI long double atan2(long double __y, long double __x) _NOEXCEPT { in atan2() function
89 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type atan2(_A1 __y, _A2 __x) _NOEXCEPT { in atan2() function
/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h48 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } in atan2() function
H A D__clang_cuda_math.h67 __DEVICE__ double atan2(double __a, double __b) { return __nv_atan2(__a, __b); } atan2() function
H A Dtgmath.h566 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ macro
/llvm-project/libc/src/math/nvptx/
H A Dnvptx.h26 LIBC_INLINE double atan2(double x, double y) { return __nv_atan2(x, y); } atan2() function
/llvm-project/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp42 Ambiguous atan2(Ambiguous, Ambiguous){ return Ambiguous(); } atan2() function
[all...]
/llvm-project/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp42 Ambiguous atan2(Ambiguous, Ambiguous){ return Ambiguous(); } in atan2() function
/llvm-project/libc/utils/MPFRWrapper/
H A DMPFRUtils.cpp212 MPFRNumber atan2(const MPFRNumber &b) { atan2() function in LIBC_NAMESPACE::testing::mpfr::MPFRNumber