Searched refs:atan2f (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/lib/msun/src/
H A Ds_cargf.c39 return (atan2f(cimagf(z), crealf(z)));
H A Dcatrigf.c190 ry = atan2f(new_y, sqrt_A2my2);
252 rx = atan2f(sqrt_A2mx2, new_x);
254 rx = atan2f(sqrt_A2mx2, -new_x);
297 atan2f(y, x)));
300 return (CMPLXF(logf(hypotf(x, y)), atan2f(y, x)));
302 return (CMPLXF(logf(ax * ax + ay * ay) / 2, atan2f(y, x)));
380 ry = atan2f(2, -ay) / 2;
382 ry = atan2f(2 * ay, (1 - ax) * (1 + ax)) / 2;
384 ry = atan2f(2 * ay, (1 - ax) * (1 + ax) - ay * ay) / 2;
H A Ds_clogf.c55 v = atan2f(y, x);
H A Dmath.h350 float atan2f(float, float);
H A Dmath_private.h864 #define __ieee754_atan2f atan2f
/freebsd-13-stable/lib/msun/tests/
H A Dinvtrig_test.c173 test2(atan2f, 0.0, ldexpf(z, e), 0.0, 0);
174 test2(atan2f, -0.0, ldexpf(z, e), -0.0, 0);
175 test2(atan2f, 0.0, ldexpf(-z, e), (float)pi, FE_INEXACT);
176 test2(atan2f, -0.0, ldexpf(-z, e), (float)-pi, FE_INEXACT);
177 test2(atan2f, ldexpf(z, e), 0.0, (float)pi / 2, FE_INEXACT);
178 test2(atan2f, ldexpf(z, e), -0.0, (float)pi / 2, FE_INEXACT);
179 test2(atan2f, ldexpf(-z, e), 0.0, (float)-pi / 2, FE_INEXACT);
180 test2(atan2f, ldexpf(-z, e), -0.0, (float)-pi / 2, FE_INEXACT);
205 test2(atan2f, ldexpf(z, e), INFINITY, 0.0, 0);
206 test2(atan2f, ldexp
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h48 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); }
405 using ::atan2f;
H A Dtgmath.h555 __tg_atan2(float __x, float __y) {return atan2f(__x, __y);}
1222 __tg_carg(float __x) {return atan2f(0.F, __x);}
H A D__clang_cuda_math.h68 __DEVICE__ float atan2f(float __a, float __b) { return __nv_atan2f(__a, __b); } function
H A D__clang_hip_math.h109 inline float atan2f(float __x, float __y) { return __ocml_atan2_f32(__x, __y); } function
/freebsd-13-stable/lib/msun/
H A DMakefile174 MLINKS+=atan2.3 atan2f.3 atan2.3 atan2l.3 \
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h59 float atan2f(float y, float x);
807 inline _LIBCPP_INLINE_VISIBILITY float atan2(float __lcpp_y, float __lcpp_x) _NOEXCEPT {return ::atan2f(__lcpp_y, __lcpp_x);}

Completed in 88 milliseconds