Searched refs:atan2 (Results 1 - 25 of 95) sorted by relevance

1234

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-925537.js38 assertClose( Math.PI / 4, Math.atan2(pinf, pinf));
39 assertClose(-Math.PI / 4, Math.atan2(ninf, pinf));
40 assertClose( 3 * Math.PI / 4, Math.atan2(pinf, ninf));
41 assertClose(-3 * Math.PI / 4, Math.atan2(ninf, ninf));
/external/v8/test/mjsunit/regress/
H A Dregress-925537.js38 assertClose( Math.PI / 4, Math.atan2(pinf, pinf));
39 assertClose(-Math.PI / 4, Math.atan2(ninf, pinf));
40 assertClose( 3 * Math.PI / 4, Math.atan2(pinf, ninf));
41 assertClose(-3 * Math.PI / 4, Math.atan2(ninf, ninf));
/external/eigen/Eigen/src/Geometry/
H A DEulerAngles.h50 res[1] = internal::atan2(s, coeff(i,i));
53 res[0] = internal::atan2(coeff(j,i), coeff(k,i));
54 res[2] = internal::atan2(coeff(i,j),-coeff(i,k));
59 res[2] = (coeff(i,i)>0?1:-1)*internal::atan2(-coeff(k,j), coeff(j,j));
65 res[1] = internal::atan2(-coeff(i,k), c);
68 res[0] = internal::atan2(coeff(j,k), coeff(k,k));
69 res[2] = internal::atan2(coeff(i,j), coeff(i,i));
74 res[2] = (coeff(i,k)>0?1:-1)*internal::atan2(-coeff(k,j), coeff(j,j));
H A DRotation2D.h137 m_angle = internal::atan2(mat.coeff(1,0), mat.coeff(0,0));
/external/stlport/test/unit/
H A Dvalarray_test.cpp42 tmp = atan2(darray, tmp);
43 tmp = atan2(1.0, darray);
44 tmp = atan2(darray, 1.0);
68 tmp = atan2(farray, tmp);
69 tmp = atan2(1.0f, farray);
70 tmp = atan2(farray, 1.0f);
95 tmp = atan2(ldarray, tmp);
96 tmp = atan2(1.0l, ldarray);
97 tmp = atan2(ldarray, 1.0l);
H A Dcmath_test.cpp104 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0, 1.0)), 1.0) );
129 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0f, 1.0f)), 1.0f) );
156 CPPUNIT_CHECK( are_equals(std::atan2(0.0l, 1.0l), 0.0l) );
/external/stlport/stlport/stl/config/
H A D_como.h86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c14 double atan2(double, double);
80 acos, acosl, acosf, asin, asinl, asinf, atan, atanl, atanf, atan2, atan2l,
98 // CHECK-NOERRNO: declare double @atan2(double, double) [[NUW]]
H A Dlibcalls.c91 double atan2_ = atan2(d, 2);
94 // CHECK-NO: declare double @atan2(double, double) [[NUW_RN]]
97 // CHECK-YES-NOT: declare double @atan2(double, double) [[NUW_RN]]
/external/chromium_org/content/browser/device_orientation/
H A Daccelerometer_mac.cc74 orientation->set_beta(kRad2deg * atan2(-axis_value[1], axis_value[2]));
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dvector2.h66 double angle = atan2(y_, x_);
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dmath.js25 var negativeZero = Math.atan2(-1, Infinity); // ### any nicer way?
/external/stlport/src/
H A Dcomplex.cpp56 { return ::atan2(__z._M_im, __z._M_re); }
60 { return ::atan2(__z._M_im, __z._M_re); }
65 { return ::atan2(__z._M_im, __z._M_re); }
224 r._M_im = ::atan2(z._M_im, z._M_re) * ln10_inv;
255 r._M_im = ::atan2(z._M_im, z._M_re);
294 _Tp logi = ::atan2(a._M_im, a._M_re);
304 _Tp logi = ::atan2(a._M_im, a._M_re);
/external/chromium_org/v8/test/mjsunit/
H A Dto_number_order.js51 assertEquals(Math.atan2(1, 2), Math.atan2(v, w));
53 assertEquals("hestfisk", x, "atan2");
/external/v8/test/mjsunit/
H A Dto_number_order.js51 assertEquals(Math.atan2(1, 2), Math.atan2(v, w));
53 assertEquals("hestfisk", x, "atan2");
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayMath.cpp50 SK_FUNCTION(atan2),
75 (SkFunctionParamType) SkType_Float, // atan2
122 SK_MEMBER_FUNCTION(atan2, Float),
165 case SK_FUNCTION(atan2):
/external/skia/src/animator/
H A DSkDisplayMath.cpp50 SK_FUNCTION(atan2),
75 (SkFunctionParamType) SkType_Float, // atan2
122 SK_MEMBER_FUNCTION(atan2, Float),
165 case SK_FUNCTION(atan2):
/external/stlport/stlport/stl/
H A D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
364 _STLP_DMATH_INLINE2(atan2)
435 _STLP_DEF_MATH_INLINE2(atan2, atan2)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
557 using ::atan2;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector2f.java592 float angle = FastMath.atan2(otherVector.y, otherVector.x)
593 - FastMath.atan2(y, x);
622 return FastMath.atan2(y, x);
/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/ceres-solver/internal/ceres/
H A Dloss_function.cc84 rho[0] = a_ * atan2(s, a_);
/external/chromium_org/third_party/skia/include/core/
H A DSkFloatingPoint.h39 #define sk_float_atan2(y,x) (float)::atan2(y,x)
/external/chromium_org/v8/test/webkit/
H A Dmath.js64 shouldBe("Math.atan2(NaN, NaN)", "NaN");
65 shouldBe("Math.atan2(NaN, 0)", "NaN");
66 shouldBe("Math.atan2(NaN, -0)", "NaN");
67 shouldBe("Math.atan2(NaN, 1)", "NaN");
68 shouldBe("Math.atan2(NaN, Infinity)", "NaN");
69 shouldBe("Math.atan2(NaN, -Infinity)", "NaN");
70 shouldBe("Math.atan2(0, NaN)", "NaN");
71 shouldBe("Math.atan2(-0, NaN)", "NaN");
72 shouldBe("Math.atan2(1, NaN)", "NaN");
73 shouldBe("Math.atan2(Infinit
[all...]
/external/skia/include/core/
H A DSkFloatingPoint.h39 #define sk_float_atan2(y,x) (float)::atan2(y,x)

Completed in 401 milliseconds

1234