Searched
full:atan2 (Results
401 -
425 of
927) sorted by null
<<11121314151617181920>>
/external/icu/icu4c/source/i18n/ |
astro.cpp | 475 result.set(atan2(sinL*cosE - tanB*sinE, cosL), 513 double azimuth = atan2(-cosD*cosL*sinH, sinD - sinL * ::sin(altitude)); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CalendarAstronomer.java | 454 return new Equatorial(Math.atan2(sinL*cosE - tanB*sinE, cosL), 488 double azimuth = Math.atan2(-cosD*cosL*sinH, sinD - sinL * Math.sin(altitude)); [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_valarray.h | 928 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, 933 __tmp[__i] = ::atan2(__x[__i], __y[__i]); 938 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, const _Tp& __c) { 942 __tmp[__i] = ::atan2(__x[__i], __c); 947 inline valarray<_Tp> atan2(const _Tp& __c, const valarray<_Tp>& __x) { 951 __tmp[__i] = ::atan2(__c, __x[__i]); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/ |
mpfr.info | [all...] |
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
_valarray.h | 928 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, 933 __tmp[__i] = ::atan2(__x[__i], __y[__i]); 938 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, const _Tp& __c) { 942 __tmp[__i] = ::atan2(__x[__i], __c); 947 inline valarray<_Tp> atan2(const _Tp& __c, const valarray<_Tp>& __x) { 951 __tmp[__i] = ::atan2(__c, __x[__i]); [all...] |
/external/clang/test/CodeGen/ |
libcall-declarations.c | 10 double atan2(double, double); 264 F(atan2), F(atan2f), F(atan2l), F(abs), F(labs), 315 // CHECK-NOERRNO: declare double @atan2(double, double) [[NUW:#[0-9]+]]
|
/external/eigen/Eigen/src/Eigenvalues/ |
SelfAdjointEigenSolver.h | 509 using std::atan2; 537 Scalar theta = atan2(sqrt(q),half_b)*s_inv3; // since sqrt(q) > 0, atan2 is in [0, pi] and theta is in [0, pi/3]
|
/frameworks/base/location/java/android/location/ |
Location.java | 358 sigma = Math.atan2(sinSigma, cosSigma); // (16) 397 float initialBearing = (float) Math.atan2(cosU2 * sinLambda, 401 float finalBearing = (float) Math.atan2(cosU1 * sinLambda, [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/ |
libm-2.15.so | |
libm.so | |
libm.so.6 | |
/bionic/libm/include/ |
math.h | 149 double atan2(double, double);
|
/external/bison/tests/ |
existing.at | [all...] |
/external/eigen/bench/ |
eig33.cpp | 77 Scalar theta = std::atan2(internal::sqrt(-q),half_b)*s_inv3;
|
/external/ltrace/etc/ |
libm.so.conf | 40 double atan2(double, double);
|
/external/opencv/cv/src/ |
cvcamshift.cpp | 235 theta = atan2( 2 * b, a - c + square );
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfEnvmap.cpp | 62 float longitude = (dir.z == 0 && dir.x == 0)? 0: atan2 (dir.x, dir.z);
|
/external/v8/src/js/ |
math.js | 315 "atan2", MathAtan2JS,
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
RippleForeground.java | 340 final double angle = Math.atan2(dY, dX);
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
math.rs | 249 TEST_FN_FUNC_FN_FN(atan2);
|
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
math.rs | 249 TEST_FN_FUNC_FN_FN(atan2);
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
math.rs | 256 TEST_FN_FUNC_FN_FN(atan2);
|
math_fp16.rs | 107 TEST_HN_FUNC_HN_HN(atan2);
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
math.rs | 249 TEST_FN_FUNC_FN_FN(atan2);
|
math.rs.orig | 249 TEST_FN_FUNC_FN_FN(atan2);
|
Completed in 286 milliseconds
<<11121314151617181920>>