Home
last modified time | relevance | path

Searched refs:tan (Results 1 – 13 of 13) sorted by relevance

/libcore/luni/src/test/resources/
Dmath_tests.csv2 tan,0x1.5078cebff9c73p-5,0x1.50486b2f87014p-5
3 tan,-0x1.5078cebff9c73p-5,-0x1.50486b2f87014p-5
4 tan,0x1.5389e6df41979p-4,0x1.52c39ef070cadp-4
5 tan,-0x1.5389e6df41979p-4,-0x1.52c39ef070cadp-4
6 tan,0x1.a933fe176b375p-3,0x1.a33f32ac5ceb5p-3
7 tan,-0x1.a933fe176b375p-3,-0x1.a33f32ac5ceb5p-3
8 tan,0x1.fac71cd34eea7p-2,0x1.d696bfa988db9p-2
9 tan,-0x1.fac71cd34eea7p-2,-0x1.d696bfa988db9p-2
10 tan,0x1.7ba49f739829fp-1,0x1.46ac372243536p-1
11 tan,-0x1.7ba49f739829fp-1,-0x1.46ac372243536p-1
[all …]
Dmath_important_numbers.csv511 tan,-0x1.cd5cdb683b402p-2,0x1.5bf0a8b145769p1,2.718281828459045
512 tan,0x1.cd5cdb683b402p-2,-0x1.5bf0a8b145769p1,-2.718281828459045
513 tan,0x0.0p0,0x0.0p0,0.0
514 tan,-0x0.0p0,-0x0.0p0,-0.0
515 tan,0x1.8eb245cbee3a6p0,0x1.0p0,1.0
516 tan,-0x1.8eb245cbee3a6p0,-0x1.0p0,-1.0
517 tan,-0x1.17b4f5bf3474ap-1,-0x1.0p-1,-0.5
518 tan,0x1.17b4f5bf3474ap-1,0x1.0p-1,0.5
519 tan,0x1.1a62633145c07p-52,-0x1.921fb54442d18p2,-6.283185307179586
520 tan,0x1.126145e9ecd66p-2,-0x1.815e630c155e1p2,-6.021385919380436
[all …]
/libcore/ojluni/src/main/native/
Djfdlibm.h50 #define tan jtan macro
Dfdlibm.h123 extern double tan __P((double));
DStrictMath.c162 NATIVE_METHOD(StrictMath, tan, "(D)D"),
/libcore/luni/src/test/java/libcore/java/lang/
DOldAndroidStrictMathTest.java80 double answer = StrictMath.tan(StrictMath.atan(1.0)); in testAtanD()
87 double answer = StrictMath.atan(StrictMath.tan(1.0)); in testAtan2DD()
551 StrictMath.tan(StrictMath.atan(1.0)) <= 1.0 in testTanD()
552 || StrictMath.tan(StrictMath.atan(1.0)) >= 9.9999999999999983E-1); in testTanD()
DOldAndroidMathTest.java103 double answer = Math.tan(Math.atan(1.0)); in testAtanD()
568 assertEquals("Incorrect answer", 0.0, Math.tan(0), 0D); in testTanD()
569 assertEquals("Incorrect answer", 1.5574077246549023, Math.tan(1), 0D); in testTanD()
/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java146 public static native double tan(double a); in tan() method in StrictMath
DMath.java191 public static native double tan(double a); in tan() method in Math
/libcore/benchmarks/src/benchmarks/regression/
DStrictMathBenchmark.java353 StrictMath.tan(d); in timeTan()
DMathBenchmark.java437 result = Math.tan(d); in timeTan()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DStrictMathTest.java109 double answer = StrictMath.tan(StrictMath.atan(1.0)); in test_atanD()
119 double answer = StrictMath.atan(StrictMath.tan(1.0)); in test_atan2DD()
1410 StrictMath.tan(StrictMath.atan(1.0)) <= 1.0 in test_tanD()
1411 || StrictMath.tan(StrictMath.atan(1.0)) >= 9.9999999999999983E-1); in test_tanD()
DMathTest.java103 double answer = Math.tan(Math.atan(1.0)); in test_atanD()
113 double answer = Math.atan(Math.tan(1.0)); in test_atan2DD()
1822 assertEquals("Incorrect answer", 0.0, Math.tan(0), 0D); in test_tanD()
1823 assertEquals("Incorrect answer", 1.5574077246549023, Math.tan(1), 0D); in test_tanD()