HomeSort by relevance Sort by last modified time
    Searched refs:tan (Results 26 - 50 of 397) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
tan_valarray.pass.cpp 16 // tan(const valarray<T>& x);
46 std::valarray<T> v3 = tan(v1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
tan_valarray.pass.cpp 16 // tan(const valarray<T>& x);
46 std::valarray<T> v3 = tan(v1);
  /external/skia/samplecode/
SampleQuadStroker.cpp 312 SkPoint pos, tan; local
315 if (meas.getPosTan(dist, &pos, &tan)) {
316 tan.scale(radius);
317 tan.rotateCCW();
318 canvas->drawLine(pos.x() + tan.x(), pos.y() + tan.y(),
319 pos.x() - tan.x(), pos.y() - tan.y(), paint);
326 pos.x() - tan.x() * 1.25f, pos.y() - tan.y() * 1.25f, labelP)
352 SkPoint pos, tan; local
    [all...]
  /cts/tests/tests/transition/src/android/transition/cts/
ArcMotionTest.java 104 float ratio = (float) Math.tan(Math.PI/8);
118 float ey = (float)(Math.tan(Math.PI/8) * 50);
135 float ex = (float)(Math.tan(Math.PI/8) * 50);
  /external/opencv3/3rdparty/openexr/Imath/
ImathMath.h 99 static T tan (T x) {return ::tan (double(x));} function in struct:Imath::Math
132 static float tan (float x) {return ::tanf (x);} function in struct:Imath::Math
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 49 tmp = tan(darray);
75 tmp = tan(farray);
102 tmp = tan(ldarray);
cmath_test.cpp 103 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0)), 1.0) );
104 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0, 1.0)), 1.0) );
128 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0f)), 1.0f) );
129 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0f, 1.0f)), 1.0f) );
154 CPPUNIT_CHECK( are_equals(std::tan(0.0l), 0.0l) );
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 49 tmp = tan(darray);
75 tmp = tan(farray);
102 tmp = tan(ldarray);
cmath_test.cpp 103 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0)), 1.0) );
104 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0, 1.0)), 1.0) );
128 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0f)), 1.0f) );
129 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0f, 1.0f)), 1.0f) );
154 CPPUNIT_CHECK( are_equals(std::tan(0.0l), 0.0l) );
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ctanh.c 38 * Let t = tan(x)
51 * cosh(x) sinh(x) / cos^2(y) + I tan(y)
61 * I omitted the original algorithm's handling of overflow in tan(x) after
130 t = tan(y);
  /external/crcalc/tests/src/com/hp/creals/
CRTest.java 114 UnaryCRFunction tan = UnaryCRFunction.tanFunction; local
128 check_eq(atan.execute(tan.execute(one)), one, "atan(tan(1) failed");
129 check_eq(atan.execute(tan.execute(one.negate())), one.negate(),
130 "atan(tan(-1) failed");
131 check_eq(tan.execute(atan.execute(huge)), huge,
132 "tan(atan(10**15)) failed");
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 121 /** \returns an expression of the coefficient-wise tan of *this.
129 tan() const function
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
unary_func.hpp 79 CV_CUDEV_EXPR_UNARY_FUNC(tan)
  /external/vulkan-validation-layers/libs/glm/detail/
func_trigonometric.hpp 90 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/tan.xml">GLSL tan man page</a>
93 GLM_FUNC_DECL genType tan(genType const & angle);
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 93 static jboolean getPosTan(JNIEnv* env, jobject clazz, jlong pairHandle, jfloat dist, jfloatArray pos, jfloatArray tan) {
97 SkScalar* tanPtr = tan ? tmpTan : NULL;
106 if (tan) {
107 convertTwoElemFloatArray(env, tan, tmpTan);
  /libcore/ojluni/src/main/native/
jfdlibm.h 50 #define tan jtan macro
  /packages/apps/DevCamera/src/com/android/devcamera/
PreviewOverlay.java 240 // screen/2 = FL tan(FOV/2) |
248 float focalLengthH = 0.5f * previewH / (float) Math.tan(Math.toRadians(mFovLargeDegrees) * 0.5);
249 float focalLengthW = 0.5f * previewW / (float) Math.tan(Math.toRadians(mFovSmallDegrees) * 0.5);
256 y1 = y2 = previewH / 2 + focalLengthH * (float) Math.tan(i);
262 x1 = x2 = previewW / 2 + focalLengthW * (float) Math.tan(i);
  /bionic/libm/x86/
s_tan.S 94 // tan(NaN) = quiet NaN, and raise invalid exception
95 // tan(INF) = NaN and raise invalid exception
96 // tan(+/-0) = +/-0
116 # -- Begin tan
117 ENTRY(tan) function
283 END(tan)
284 # -- End tan
287 ALIAS_SYMBOL(tanl, tan);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 52 float[] tan = { 1f }; local
54 mPathMeasure.getPosTan(distance, pos, tan);
  /frameworks/base/core/java/android/transition/
ArcMotion.java 52 Math.tan(Math.toRadians(DEFAULT_MAX_ANGLE_DEGREES/2));
176 return (float) Math.tan(Math.toRadians(arcInDegrees / 2));
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 95 qpoints->pTan = tan;
  /art/runtime/arch/arm64/
entrypoints_init_arm64.cc 78 qpoints->pTan = tan;
  /art/runtime/arch/x86/
entrypoints_init_x86.cc 59 qpoints->pTan = tan;
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 66 qpoints->pTan = tan;
  /external/v8/test/mjsunit/regress/
regress-transcendental.js 47 test(Math.tan, -1.57079632679489660000, "Math.tan");

Completed in 3580 milliseconds

12 3 4 5 6 7 8 91011>>