/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);
|
/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 129 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/jmonkeyengine/engine/src/android/jme3tools/android/ |
Fixed.java | 101 int tan0 = tan(0); 102 int tan1 = tan(1); 111 // Create the a table of tan values 114 lut[n] = tan(n) >> rotl; 117 // Then from the tan values create a reverse lookup 265 public static int tan(int n) { method in class:Fixed
|
/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);
|
/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);
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
BatchNode.java | 556 Vector3f tan = vars.vect3; local 583 tan.x = tmpFloatT[tanIndex++]; 584 tan.y = tmpFloatT[tanIndex++]; 585 tan.z = tmpFloatT[tanIndex++]; 589 transform.multNormal(tan, tan); 601 tmpFloatT[tanIndex++] = tan.x; 602 tmpFloatT[tanIndex++] = tan.y; 603 tmpFloatT[tanIndex++] = tan.z;
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
GeometryBatchFactory.java | 66 Vector3f tan = new Vector3f(); local 73 tan.x = inBuf.get(i * components + 0); 74 tan.y = inBuf.get(i * components + 1); 75 tan.z = inBuf.get(i * components + 2); 77 transform.multNormal(tan, tan); 79 outBuf.put(offset + i * components + 0, tan.x); 80 outBuf.put(offset + i * components + 1, tan.y); 81 outBuf.put(offset + i * components + 2, tan.z);
|
/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 | 53 Math.tan(Math.toRadians(DEFAULT_MAX_ANGLE_DEGREES/2)); 177 return (float) Math.tan(Math.toRadians(arcInDegrees / 2));
|
/libcore/luni/src/main/native/ |
java_lang_Math.cpp | 35 return tan(a); 145 NATIVE_METHOD(Math, tan, "!(D)D"),
|
java_lang_StrictMath.cpp | 80 NATIVE_METHOD(StrictMath, tan, "!(D)D"),
|
/external/eigen/Eigen/src/plugins/ |
ArrayCwiseUnaryOps.h | 121 /** \returns an expression of the coefficient-wise tan of *this. 129 tan() const function
|
/external/v8/test/mjsunit/regress/ |
regress-transcendental.js | 47 test(Math.tan, -1.57079632679489660000, "Math.tan");
|
/external/v8/test/mjsunit/ |
transcendentals.js | 38 assertTrue(Math.tan(x) != Math.tan(y));
|
/external/skia/src/animator/ |
SkDisplayMath.cpp | 52 SK_FUNCTION(tan) 92 (SkFunctionParamType) SkType_Float, // tan 124 SK_MEMBER_FUNCTION(tan, Float) 206 case SK_FUNCTION(tan):
|
/ndk/sources/cxx-stl/stlport/src/ |
complex_trig.cpp | 104 // tan 118 _STLP_DECLSPEC complex<float> _STLP_CALL tan(const complex<float>& z) function 121 _STLP_DECLSPEC complex<double> _STLP_CALL tan(const complex<double>& z) function 125 _STLP_DECLSPEC complex<long double> _STLP_CALL tan(const complex<long double>& z) function
|
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/ |
NavCalculator.java | 215 double m1 = (7915.704468 * (Math.log(Math.tan(Math.toRadians(45 221 double m2 = (7915.704468 * (Math.log(Math.tan(Math.toRadians(45 245 float m1 = (float) (7915.7045 * Math.log10(Math.tan(Math.toRadians(45 + (absLat1 / 2)))) 248 float m2 = (float) (7915.7045 * Math.log10(Math.tan(Math.toRadians(45 + (absLat2 / 2)))) 330 double dep = (Math.abs(dlat * 60)) * Math.tan(angle);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_cmath.h | 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 380 _STLP_DMATH_INLINE(tan) 451 _STLP_DEF_MATH_INLINE(tan, tan) 515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 592 using ::tan;
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_cmath.h | 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 380 _STLP_DMATH_INLINE(tan) 451 _STLP_DEF_MATH_INLINE(tan, tan) 515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 592 using ::tan;
|