Searched defs:atan2 (Results 1 – 8 of 8) sorted by relevance
/llvm-project/libcxx/include/__math/ |
H A D | inverse_trigonometric_functions.h | 77 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.h | 48 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } in atan2() function
|
H A D | __clang_cuda_math.h | 67 __DEVICE__ double atan2(double __a, double __b) { return __nv_atan2(__a, __b); } atan2() function
|
H A D | tgmath.h | 566 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ macro
|
/llvm-project/libc/src/math/nvptx/ |
H A D | nvptx.h | 26 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 D | cmath.pass.cpp | 42 Ambiguous atan2(Ambiguous, Ambiguous){ return Ambiguous(); } atan2() function [all...] |
/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
H A D | math_h.pass.cpp | 42 Ambiguous atan2(Ambiguous, Ambiguous){ return Ambiguous(); } in atan2() function
|
/llvm-project/libc/utils/MPFRWrapper/ |
H A D | MPFRUtils.cpp | 212 MPFRNumber atan2(const MPFRNumber &b) { atan2() function in LIBC_NAMESPACE::testing::mpfr::MPFRNumber
|