HomeSort by relevance Sort by last modified time
    Searched refs:tan (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.18.js 24 ECMA Section: 15.8.2.18 tan( x )
25 Description: return an approximation to the tan of the
39 var TITLE = "Math.tan(x)";
51 array[item++] = new TestCase( SECTION, "Math.tan.length", 1, Math.tan.length );
53 array[item++] = new TestCase( SECTION, "Math.tan()", Number.NaN, Math.tan() );
54 array[item++] = new TestCase( SECTION, "Math.tan(void 0)", Number.NaN, Math.tan(void 0));
55 array[item++] = new TestCase( SECTION, "Math.tan(null)", 0, Math.tan(null) )
    [all...]
  /external/opencore/codecs_v2/standalone_headerfiles/
arbt_math.h 31 #define arbt_tan tan
  /frameworks/base/graphics/java/android/graphics/
PathMeasure.java 82 * @param tan If not null, returns the sampled tangent (x==[0], y==[1])
85 public boolean getPosTan(float distance, float pos[], float tan[]) {
87 tan != null && tan.length < 2) {
90 return native_getPosTan(native_instance, distance, pos, tan);
143 private static native boolean native_getPosTan(int native_instance, float distance, float pos[], float tan[]);
  /bionic/libm/i387/
s_tan.S 40 ENTRY(tan) function
  /bionic/libm/src/
s_tan.c 17 /* tan(x)
25 * Let S,C and T denote the sin, cos and tan respectively on
30 * n sin(x) cos(x) tan(x)
39 * Let trig be any of sin, cos, or tan.
51 tan(double x) function
67 /* tan(Inf or NaN) is NaN */
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 45 using ::tan;
  /bionic/libstdc++/include/
cmath 45 using ::tan;
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cmath 45 using ::tan;
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cmath 45 using ::tan;
  /external/skia/src/core/
SkCordic.cpp 41 int32_t tan = *tanPtr++; local
45 z -= tan;
49 z += tan;
95 int32_t tan = *tanPtr++; local
99 z -= tan;
103 z += tan;
166 int32_t tan = *tanPtr++; local
174 z -= tan;
178 z += tan;
232 // tan
    [all...]
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 79 static jboolean getPosTan(JNIEnv* env, jobject clazz, PathMeasurePair* pair, jfloat dist, jfloatArray pos, jfloatArray tan) {
82 SkScalar* tanPtr = tan ? tmpTan : NULL;
91 if (tan) {
92 convertTwoElemFloatArray(env, tan, tmpTan);
  /external/opencore/oscl/oscl/osclutil/src/
oscl_math.inl 56 return (double) tan(value);
  /external/stlport/test/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) );
  /frameworks/base/tests/CoreTests/android/core/
MathPerformanceTest.java 108 result = Math.tan(sDouble1);
109 result = Math.tan(sDouble1);
110 result = Math.tan(sDouble1);
111 result = Math.tan(sDouble1);
112 result = Math.tan(sDouble1);
113 result = Math.tan(sDouble1);
114 result = Math.tan(sDouble1);
115 result = Math.tan(sDouble1);
116 result = Math.tan(sDouble1);
117 result = Math.tan(sDouble1)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 74 float[] tan = { 1f }; local
76 mPathMeasure.getPosTan(distance, pos, tan);
  /frameworks/base/core/java/android/util/
MathUtils.java 139 public static float tan(float angle) { method in class:MathUtils
140 return (float) Math.tan(angle);
  /external/v8/test/mjsunit/
transcendentals.js 38 assertTrue(Math.tan(x) != Math.tan(y));
  /external/webkit/WebCore/platform/graphics/transforms/
AffineTransform.cpp 260 return shear(tan(deg2rad(angleX)), tan(deg2rad(angleY)));
265 return shear(tan(deg2rad(angle)), 0);
270 return shear(0, tan(deg2rad(angle)));
  /external/skia/src/animator/
SkDisplayMath.cpp 71 SK_FUNCTION(tan)
111 (SkFunctionParamType) SkType_Float, // tan
143 SK_MEMBER_FUNCTION(tan, Float)
225 case SK_FUNCTION(tan):
  /external/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/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;
  /external/skia/include/core/
SkFloatingPoint.h 44 #define sk_float_tan(x) (float)::tan(x)
  /dalvik/libcore/luni/src/main/java/java/lang/
Math.java 898 * <li>{@code tan(+0.0) = +0.0}</li>
899 * <li>{@code tan(-0.0) = -0.0}</li>
900 * <li>{@code tan(+infinity) = NaN}</li>
901 * <li>{@code tan(-infinity) = NaN}</li>
902 * <li>{@code tan(NaN) = NaN}</li>
909 public static native double tan(double d); method in class:Math
    [all...]
  /dalvik/libcore/luni/src/main/native/
java_lang_Math.c 24 /* native public static double tan(double a); */
27 return tan(a);
169 { "tan", "(D)D", jtan },

Completed in 6706 milliseconds

1 2 3 4