/external/clang/lib/Headers/ |
H A D | __clang_cuda_cmath.h | 54 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } function
|
H A D | tgmath.h | 558 // 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/eigen/unsupported/Eigen/src/AutoDiff/ |
H A D | AutoDiffScalar.h | 622 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 D | test_complex.py | 5 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 D | vcpu_fbench.c | 352 #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 D | fbench.c | 348 #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 D | compatibility.hpp | 80 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 D | psy_configuration.cpp | 298 FIXP_DBL bvalFFTLine, atan1, atan2; local 327 atan2 = fixp_atan(x2); 330 bvalFFTLine = fMult(ONE3P3, atan2) + fMult(THREEP5, fMult(atan1, atan1));
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
H A D | FastMath.java | 2942 public static double atan2(double y, double x) { method in class:FastMath
|
/external/libcxx/test/std/depr/depr.c.headers/ |
H A D | math_h.pass.cpp | 36 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 D | cmath.pass.cpp | 37 Ambiguous atan2(Ambiguous, Ambiguous){ return Ambiguous(); } function 170 static_assert((std::is_same<decltype(std::atan2((float)0, (float)0)), float>::value), ""); 171 static_assert((std::is_same<decltype(std::atan2((bool)0, (float)0)), double>::value), ""); 172 static_assert((std::is_same<decltype(std::atan2((unsigned short)0, (double)0)), double>::value), ""); 173 static_assert((std::is_same<decltype(std::atan2((int)0, (long double)0)), long double>::value), ""); 174 static_assert((std::is_same<decltype(std::atan2((float)0, (unsigned int)0)), double>::value), ""); 175 static_assert((std::is_same<decltype(std::atan2((double)0, (long)0)), double>::value), ""); 176 static_assert((std::is_same<decltype(std::atan2((long double)0, (unsigned long)0)), long double>::value), ""); 177 static_assert((std::is_same<decltype(std::atan2((int)0, (long long)0)), double>::value), ""); 178 static_assert((std::is_same<decltype(std::atan2((in [all...] |
/external/v8/src/base/ |
H A D | ieee754.cc | 1256 /* 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 D | ShaderCore.cpp | 1462 void ShaderCore::atan2(Vector4f &dst, const Vector4f &src0, const Vector4f &src1, bool pp) function in class:sw::ShaderCore
|
/external/robolectric/v1/lib/main/ |
H A D | android.jar | META-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ... |
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |