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

/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h593 atan2(const AutoDiffScalar<DerTypeA>& a, const AutoDiffScalar<DerTypeB>& b) function in namespace:Eigen
595 using std::atan2;
600 ret.value() = atan2(a.value(), b.value());
/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/aac/libAACenc/src/
H A Dpsy_configuration.cpp298 FIXP_DBL bvalFFTLine, atan1, atan2; local
327 atan2 = fixp_atan(x2);
330 bvalFFTLine = fMult(ONE3P3, atan2) + fMult(THREEP5, fMult(atan1, atan1));
/external/ceres-solver/include/ceres/
H A Djet.h393 inline double atan2(double y, double x) { return std::atan2(y, x); } function in namespace:ceres
552 // atan2(b + db, a + da) ~= atan2(b, a) + (- b da + a db) / (a^2 + b^2)
557 Jet<T, N> atan2(const Jet<T, N>& g, const Jet<T, N>& f) { function in namespace:ceres
564 return Jet<T, N>(atan2(g.a, f.a), tmp * (- g.a * f.v + f.a * g.v));
/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/clang/lib/Headers/
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/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java465 * A direct call to Math.atan2.
468 * @return Math.atan2(fY,fX)
469 * @see java.lang.Math#atan2(double, double)
471 public static float atan2(float fY, float fX) { method in class:FastMath
472 return (float) Math.atan2(fY, fX);
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp39 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/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 532 milliseconds