Searched refs:acos (Results 1 - 25 of 110) sorted by relevance

12345

/external/eigen/doc/snippets/
H A DCwise_acos.cpp2 cout << v.acos() << endl;
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dlatebindingsymboltable_unittest.cc41 X(acos) \
59 EXPECT_EQ(table.acos()(0.5), acos(0.5));
/external/chromium_org/v8/test/mjsunit/
H A Dtranscendentals.js44 assertTrue(Math.acos(x) != Math.acos(y));
/external/v8/test/mjsunit/
H A Dtranscendentals.js44 assertTrue(Math.acos(x) != Math.acos(y));
/external/eigen/unsupported/doc/examples/
H A DMatrixExponential.cpp8 const double pi = std::acos(-1.0);
H A DMatrixFunction.cpp13 const double pi = std::acos(-1.0);
H A DMatrixSquareRoot.cpp8 const double pi = std::acos(-1.0);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DCone.cpp59 double angle = 180.0 * acos(dotProduct) / piDouble;
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c5 double acos(double);
80 acos, acosl, acosf, asin, asinl, asinf, atan, atanl, atanf, atan2, atan2l,
89 // CHECK-NOERRNO: declare double @acos(double) [[NUW:#[0-9]+]]
/external/stlport/test/unit/
H A Dvalarray_test.cpp39 tmp = acos(darray);
65 tmp = acos(farray);
92 tmp = acos(ldarray);
H A Dcmath_test.cpp101 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0)), 1.0) );
126 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0f)), 1.0f) );
152 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0l)), 1.0l) );
/external/eigen/demos/opengl/
H A Dtrackball.cpp28 float angle = 2. * acos(cos_angle);
H A Dgpuhelper.cpp67 float angle = 180.f/M_PI * acos(tmp.z());
88 float angle = 180.f/M_PI * acos(tmp.z());
/external/chromium_org/third_party/skia/include/core/
H A DSkFloatingPoint.h37 #define sk_float_acos(x) (float)::acos(x)
54 #define sk_float_acos(x) static_cast<float>(acos(x))
/external/eigen/Eigen/src/Core/
H A DGlobalFunctions.h45 EIGEN_ARRAY_DECLARE_GLOBAL_STD_UNARY(acos,scalar_acos_op)
91 EIGEN_ARRAY_DECLARE_GLOBAL_EIGEN_UNARY(acos,scalar_acos_op)
/external/skia/include/core/
H A DSkFloatingPoint.h37 #define sk_float_acos(x) (float)::acos(x)
54 #define sk_float_acos(x) static_cast<float>(acos(x))
/external/ceres-solver/internal/ceres/
H A Djet_test.cc281 { // Check that cos(acos(x)) == x.
283 ExpectJetsClose(cos(acos(a)), a);
284 ExpectJetsClose(acos(cos(a)), a);
287 ExpectJetsClose(cos(acos(b)), b);
288 ExpectJetsClose(acos(cos(b)), b);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DRotateTransformOperation.cpp87 angle = rad2deg(acos(decomp.quaternionW) * 2);
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h73 * \sa sin(), acos()
103 acos() const function
113 * \sa sin(), acos()
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayMath.cpp47 SK_FUNCTION(acos),
69 (SkFunctionParamType) SkType_Float, // acos
119 SK_MEMBER_FUNCTION(acos, Float),
156 case SK_FUNCTION(acos):
/external/skia/src/animator/
H A DSkDisplayMath.cpp47 SK_FUNCTION(acos),
69 (SkFunctionParamType) SkType_Float, // acos
119 SK_MEMBER_FUNCTION(acos, Float),
156 case SK_FUNCTION(acos):
/external/stlport/stlport/stl/
H A D_cmath.h340 //We have to tell the compilers that abs, acos ... math functions are not intrinsic
345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
361 _STLP_DMATH_INLINE(acos)
432 _STLP_DEF_MATH_INLINE(acos, acos)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
554 using ::acos;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DGeometry.js134 return WebInspector.Geometry.radToDeg(Math.acos(cos));
/external/chromium_org/ui/compositor/
H A Ddebug_utils.cc80 *out << std::acos(decomp.quaternion[3]) * 360.0 / M_PI;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DPannerNode.cpp295 azimuth = 180.0 * acos(projectedSource.dot(listenerRight)) / piDouble;
310 double elevation = 90.0 - 180.0 * acos(sourceListener.dot(up)) / piDouble;

Completed in 929 milliseconds

12345