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

/external/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h157 // Work around a bug in Win, where atan2(+-infinity, +-infinity) yields NaN instead of specific values.
175 result = ::atan2(x, y);
186 #define atan2(x, y) wtf_atan2(x, y) macro
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h583 atan2(const AutoDiffScalar<DerTypeA>& a, const AutoDiffScalar<DerTypeB>& b) function in namespace:Eigen
585 using std::atan2;
590 ret.value() = atan2(a.value(), b.value());
/external/valgrind/main/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/main/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/eigen/Eigen/src/Core/
H A DMathFunctions.h483 * Implementation of atan2 *
492 using std::atan2;
493 return atan2(x, y);
517 inline EIGEN_MATHFUNC_RETVAL(atan2, Scalar) atan2(const Scalar& x, const Scalar& y) function in namespace:Eigen::internal
519 return EIGEN_MATHFUNC_IMPL(atan2, Scalar)::run(x, y);
/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/clang/lib/include/
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/eigen/unsupported/test/mpreal/
H A Dmpreal.h350 friend const mpreal atan2 (const mpreal& y, const mpreal& x, mp_rnd_t rnd_mode = mpreal::default_rnd);
1866 inline const mpreal atan2 (const mpreal& y, const mpreal& x, mp_rnd_t rnd_mode) function in namespace:mpfr
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h78 /// double atan2(double y, double x);
79 atan2, enumerator in enum:llvm::LibFunc::Func

Completed in 412 milliseconds