/external/webkit/Source/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...] |
/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 | 47 using ::tan;
|
/ndk/sources/cxx-stl/gabi++/include/ |
cmath | 47 using ::tan;
|
/ndk/sources/cxx-stl/system/include/ |
cmath | 47 using ::tan;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
cmath | 45 using ::tan;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
cmath | 45 using ::tan;
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/system/include/ |
cmath | 47 using ::tan;
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/system/include/ |
cmath | 47 using ::tan;
|
/prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gabi++/include/ |
cmath | 47 using ::tan;
|
/prebuilt/ndk/android-ndk-r7/sources/cxx-stl/system/include/ |
cmath | 47 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/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) );
|
/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) );
|
/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);
|
/libcore/luni/src/main/native/ |
java_lang_Math.cpp | 27 return tan(a); 130 NATIVE_METHOD(Math, tan, "!(D)D"),
|