/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
complex.h | 140 return atan2 (__imag__ _Z, __real__ _Z);
|
/prebuilts/go/darwin-x86/src/math/cmplx/ |
asin.go | 152 t := 0.5 * math.Atan2(2*real(x), a)
|
/prebuilts/go/linux-x86/src/math/cmplx/ |
asin.go | 152 t := 0.5 * math.Atan2(2*real(x), a)
|
/external/libcxx/include/ |
cmath | 62 floating_point atan2 (arithmetic y, arithmetic x); 722 // atan2 724 using ::atan2; 728 inline _LIBCPP_INLINE_VISIBILITY float atan2(float __lcpp_y, float __lcpp_x) _NOEXCEPT {return atan2f(__lcpp_y, __lcpp_x);} 729 inline _LIBCPP_INLINE_VISIBILITY long double atan2(long double __lcpp_y, long double __lcpp_x) _NOEXCEPT {return atan2l(__lcpp_y, __lcpp_x);} 740 atan2(_A1 __lcpp_y, _A2 __lcpp_x) _NOEXCEPT 745 return atan2((__result_type)__lcpp_y, (__result_type)__lcpp_x); [all...] |
complex | 895 return atan2(__c.imag(), __c.real()); 909 return atan2(0., __re); 921 return atan2(0., __re); [all...] |
/external/opencv3/3rdparty/openexr/Imath/ |
ImathMatrixAlgo.h | 615 rot.x = Math<T>::atan2 (M[1][2], M[2][2]); 632 rot.y = Math<T>::atan2 (-N[0][2], cy); 633 rot.z = Math<T>::atan2 (-N[1][0], N[1][1]); 662 rot.x = -Math<T>::atan2 (M[1][0], M[0][0]); 679 rot.y = -Math<T>::atan2 (-N[2][0], cy); 680 rot.z = -Math<T>::atan2 (-N[1][2], N[1][1]); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cmath | 62 floating_point atan2 (arithmetic y, arithmetic x); 718 // atan2 720 using ::atan2; 724 inline _LIBCPP_INLINE_VISIBILITY float atan2(float __y, float __x) _NOEXCEPT {return atan2f(__y, __x);} 725 inline _LIBCPP_INLINE_VISIBILITY long double atan2(long double __y, long double __x) _NOEXCEPT {return atan2l(__y, __x);} 736 atan2(_A1 __y, _A2 __x) _NOEXCEPT 741 return atan2((__result_type)__y, (__result_type)__x); [all...] |
complex | 895 return atan2(__c.imag(), __c.real()); 909 return atan2(0., __re); 921 return atan2(0., __re); [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cmath | 62 floating_point atan2 (arithmetic y, arithmetic x); 718 // atan2 720 using ::atan2; 724 inline _LIBCPP_INLINE_VISIBILITY float atan2(float __y, float __x) _NOEXCEPT {return atan2f(__y, __x);} 725 inline _LIBCPP_INLINE_VISIBILITY long double atan2(long double __y, long double __x) _NOEXCEPT {return atan2l(__y, __x);} 736 atan2(_A1 __y, _A2 __x) _NOEXCEPT 741 return atan2((__result_type)__y, (__result_type)__x); [all...] |
complex | 895 return atan2(__c.imag(), __c.real()); 909 return atan2(0., __re); 921 return atan2(0., __re); [all...] |
/external/skia/tests/ |
PathOpsAngleIdeas.cpp | 106 double angle = (atan2(pt.fY, pt.fX) + SK_ScalarPI) * 8 / (SK_ScalarPI * 2); 434 double a1s = atan2(origin.fY - quad1[1].fY, quad1[1].fX - origin.fX); 435 double a1e = atan2(origin.fY - quad1[2].fY, quad1[2].fX - origin.fX); 436 double a2s = atan2(origin.fY - quad2[1].fY, quad2[1].fX - origin.fX); 437 double a2e = atan2(origin.fY - quad2[2].fY, quad2[2].fX - origin.fX); [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
CoreMathVerifier.java | 62 static native float atan2(float x, float y); method in class:CoreMathVerifier 367 static private Target.Floaty atan2(double y, double x, Target t) { method in class:CoreMathVerifier 371 Math.atan2(numerator.mid(), denominator.mid()), 372 Math.atan2(numerator.min(), denominator.min()), 373 Math.atan2(numerator.min(), denominator.max()), 374 Math.atan2(numerator.max(), denominator.min()), 375 Math.atan2(numerator.max(), denominator.max())); 378 static private Target.Floaty atan2(float y, float x, Target t) { method in class:CoreMathVerifier 382 atan2(numerator.mid32(), denominator.mid32()), 383 atan2(numerator.min32(), denominator.min32()) [all...] |
/external/libcxx/test/std/numerics/c.math/ |
cmath.pass.cpp | 39 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((int)0, (unsigned long long)0)), double>::value), "") [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
RVCVXCheckAnalyzer.java | [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
cmath | 55 #undef atan2 159 using ::atan2; 163 atan2(float __y, float __x) 167 atan2(long double __y, long double __x) 174 atan2(_Tp __y, _Up __x) 177 return atan2(__type(__y), __type(__x)); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
cmath | 55 #undef atan2 159 using ::atan2; 163 atan2(float __y, float __x) 167 atan2(long double __y, long double __x) 174 atan2(_Tp __y, _Up __x) 177 return atan2(__type(__y), __type(__x)); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ |
cmath | 55 #undef atan2 159 using ::atan2; 163 atan2(float __y, float __x) 167 atan2(long double __y, long double __x) 174 atan2(_Tp __y, _Up __x) 177 return atan2(__type(__y), __type(__x)); [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
cmath | 55 #undef atan2 159 using ::atan2; 163 atan2(float __y, float __x) 167 atan2(long double __y, long double __x) 174 atan2(_Tp __y, _Up __x) 177 return atan2(__type(__y), __type(__x)); [all...] |
/cts/apps/CameraITS/tests/sensor_fusion/ |
test_sensor_fusion.py | 274 rot = -math.atan2(tform[0, 1], tform[0, 0]) 276 rot = math.atan2(tform[0, 1], tform[0, 0])
|
/external/deqp/android/cts/master/src/ |
gles3-test-issues.txt | 72 dEQP-GLES3.functional.shaders.builtin_functions.precision.atan2.mediump_* 73 dEQP-GLES3.functional.shaders.builtin_functions.precision.atan2.highp_*
|
/external/llvm/docs/tutorial/ |
LangImpl1.rst | 143 extern atan2(arg1 arg2); 145 atan2(sin(.4), cos(42))
|
OCamlLangImpl1.rst | 136 extern atan2(arg1 arg2); 138 atan2(sin(.4), cos(42))
|
/external/opencv/cv/src/ |
cvrotcalipers.cpp | 447 box.angle = (float)atan2( -(double)out[1].y, (double)out[1].x ); 457 box.angle = (float)atan2( -dy, dx );
|
/external/opencv3/modules/core/src/opencl/ |
arithm.cl | 258 workT tmp = atan2(srcelem2, srcelem1); \ 265 workT tmp = degrees(atan2(srcelem2, srcelem1)); \
|
/external/opencv3/modules/imgproc/src/ |
rotcalipers.cpp | 368 box.angle = (float)atan2( (double)out[1].y, (double)out[1].x ); 378 box.angle = (float)atan2( dy, dx );
|