Home
last modified time | relevance | path

Searched refs:acos (Results 1 – 14 of 14) sorted by relevance

/libcore/ojluni/src/main/native/
DMath.c50 return acos(d); in Math_acos()
147 FAST_NATIVE_METHOD(Math, acos, "(D)D"),
Djfdlibm.h38 #define acos jacos macro
Dfdlibm.h117 extern double acos __P((double));
DStrictMath.c164 NATIVE_METHOD(StrictMath, acos, "(D)D"),
/libcore/luni/src/test/resources/
Dmath_important_numbers.csv59 acos,0x1.921fb54442d18p0,0x0.0p0,0.0
60 acos,0x1.921fb54442d18p0,-0x0.0p0,-0.0
61 acos,0x0.0p0,0x1.0p0,1.0
62 acos,0x1.921fb54442d18p1,-0x1.0p0,-1.0
63 acos,0x1.0c152382d7366p1,-0x1.0p-1,-0.5
64 acos,0x1.0c152382d7366p0,0x1.0p-1,0.5
65 acos,0x1.3cb0785319b73p1,-0x1.921fb54442d18p-1,-0.7853981633974483
66 acos,0x1.0f994d58bf2a8p1,-0x1.0c152382d7365p-1,-0.5235987755982988
67 acos,0x1.d5ef495ee4bfcp0,-0x1.0c152382d7365p-2,-0.2617993877991494
68 acos,0x1.921fb54442d18p0,0x0.0p0,0.0
[all …]
Dmath_tests.csv5026 acos,0x1.921fb54442d18p0,0x0.0p0,0.0
5027 acos,0x1.921fb54442d18p0,-0x0.0p0,-0.0
5028 acos,0x0.0p0,0x1.0p0,1.0
5029 acos,0x1.921fb54442d18p1,-0x1.0p0,-1.0
5030 acos,0x1.0c152382d7366p1,-0x1.0p-1,-0.5
5031 acos,0x1.0c152382d7366p0,0x1.0p-1,0.5
5032 acos,0x1.921fb54442d18p0,0x0.0p0,0.0
/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java156 public static native double acos(double a); in acos() method in StrictMath
DMath.java203 public static native double acos(double a); in acos() method in Math
/libcore/benchmarks/src/benchmarks/regression/
DStrictMathBenchmark.java85 StrictMath.acos(d); in timeAcos()
DMathBenchmark.java69 result = Math.acos(d); in timeAcos()
/libcore/luni/src/test/java/libcore/java/lang/
DOldAndroidStrictMathTest.java69 .acos(ADJ / HYP)) == ADJ / HYP); in testAcosD()
144 .acos(ADJ / HYP)) == ADJ / HYP); in testCosD()
DOldAndroidMathTest.java85 double r = Math.cos(Math.acos(ADJ / HYP)); in testAcosD()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DStrictMathTest.java92 .acos(ADJ / HYP)) == ADJ / HYP); in test_acosD()
314 .acos(ADJ / HYP)) == ADJ / HYP); in test_cosD()
DMathTest.java79 double r = Math.cos(Math.acos(ADJ / HYP)); in test_acosD()