Searched defs:atan2 (Results 1 - 25 of 28) sorted by relevance

12

/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h54 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } function
H A Dtgmath.h558 // atan2
566 __tg_atan2(double __x, double __y) {return atan2(__x, __y);}
572 #undef atan2 macro
573 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ macro
1233 __tg_carg(double __x) {return atan2(0., __x);}
/external/python/cpython3/Lib/test/
H A Dtest_complex.py7 from math import atan2, isnan, copysign namespace
290 return atan2(x, -1.)
510 self.assertEqual(atan2(z1.imag, -1.), atan2(0., -1.))
511 self.assertEqual(atan2(z2.imag, -1.), atan2(-0., -1.))
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h622 atan2(const AutoDiffScalar<DerTypeA>& a, const AutoDiffScalar<DerTypeB>& b) function in namespace:Eigen
624 using std::atan2;
628 ret.value() = atan2(a.value(), b.value());
/external/python/cpython2/Lib/test/
H A Dtest_complex.py5 from math import atan2, isnan, copysign namespace
295 return atan2(x, -1.)
509 self.assertEqual(atan2(z1.imag, -1.), atan2(0., -1.))
510 self.assertEqual(atan2(z2.imag, -1.), atan2(-0., -1.))
/external/valgrind/memcheck/tests/
H A Dvcpu_fbench.c352 #define atan2 I_atan2 macro
530 /* atan2(y,x) Return arctangent in radians of y/x,
533 static double atan2(y, x) function
539 if (y == 0.0) /* Special case: atan2(0,0) = 0 */
570 return atan2(x, sqrt(1 - x * x));
/external/valgrind/perf/
H A Dfbench.c348 #define atan2 I_atan2 macro
526 /* atan2(y,x) Return arctangent in radians of y/x,
529 static double atan2(y, x) function
535 if (y == 0.0) /* Special case: atan2(0,0) = 0 */
566 return atan2(x, sqrt(1 - x * x));
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dcompatibility.hpp80 template <typename T, precision P> GLM_FUNC_QUALIFIER T atan2(T x, T y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm
81 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec2<T, P> atan2(const detail::tvec2<T, P>& x, const detail::tvec2<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm
82 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec3<T, P> atan2(const detail::tvec3<T, P>& x, const detail::tvec3<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm
83 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec4<T, P> atan2(const detail::tvec4<T, P>& x, const detail::tvec4<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm
/external/aac/libAACenc/src/
H A Dpsy_configuration.cpp279 FIXP_DBL bvalFFTLine, atan1, atan2; local
312 atan2 = fixp_atan(x2);
315 bvalFFTLine = fMult(ONE3P3, atan2) + fMult(THREEP5, fMult(atan1, atan1));
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DFastMath.java2942 public static double atan2(double y, double x) { method in class:FastMath
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp36 Ambiguous atan2(Ambiguous, Ambiguous){ return Ambiguous(); } function
168 static_assert((std::is_same<decltype(atan2((float)0, (float)0)), float>::value), "");
169 static_assert((std::is_same<decltype(atan2((bool)0, (float)0)), double>::value), "");
170 static_assert((std::is_same<decltype(atan2((unsigned short)0, (double)0)), double>::value), "");
171 static_assert((std::is_same<decltype(atan2((int)0, (long double)0)), long double>::value), "");
172 static_assert((std::is_same<decltype(atan2((float)0, (unsigned int)0)), double>::value), "");
173 static_assert((std::is_same<decltype(atan2((double)0, (long)0)), double>::value), "");
174 static_assert((std::is_same<decltype(atan2((long double)0, (unsigned long)0)), long double>::value), "");
175 static_assert((std::is_same<decltype(atan2((int)0, (long long)0)), double>::value), "");
176 static_assert((std::is_same<decltype(atan2((in
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp38 Ambiguous atan2(Ambiguous, Ambiguous){ return Ambiguous(); } function
171 static_assert((std::is_same<decltype(std::atan2((float)0, (float)0)), float>::value), "");
172 static_assert((std::is_same<decltype(std::atan2((bool)0, (float)0)), double>::value), "");
173 static_assert((std::is_same<decltype(std::atan2((unsigned short)0, (double)0)), double>::value), "");
174 static_assert((std::is_same<decltype(std::atan2((int)0, (long double)0)), long double>::value), "");
175 static_assert((std::is_same<decltype(std::atan2((float)0, (unsigned int)0)), double>::value), "");
176 static_assert((std::is_same<decltype(std::atan2((double)0, (long)0)), double>::value), "");
177 static_assert((std::is_same<decltype(std::atan2((long double)0, (unsigned long)0)), long double>::value), "");
178 static_assert((std::is_same<decltype(std::atan2((int)0, (long long)0)), double>::value), "");
179 static_assert((std::is_same<decltype(std::atan2((in
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dcwise_ops.h803 return ::atan2(y, x);
805 return std::atan2(y, x);
811 struct atan2 : base<T, scalar_atan2_op<T>> {}; struct in namespace:tensorflow::functor
/external/v8/src/base/
H A Dieee754.cc1256 /* atan2(y,x)
1258 * 1. Reduce y to positive by atan2(y,x)=-atan2(-y,x).
1282 double atan2(double y, double x) { function in namespace:v8::base::ieee754
/external/swiftshader/src/Shader/
H A DShaderCore.cpp1547 void ShaderCore::atan2(Vector4f &dst, const Vector4f &src0, const Vector4f &src1, bool pp) function in class:sw::ShaderCore
/external/annotation-tools/scene-lib/
H A Dant-contrib.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/AntContribVersion ...
/external/kotlinc/lib/
H A Dkotlin-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
H A Dkotlin-stdlib.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
/external/annotation-tools/asmx/test/lib/
H A Dsaxon7.jarMETA-INF/ META-INF/MANIFEST.MF net/sf/saxon/Compile.class Compile.java package ...
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 1227 milliseconds

12