/libcore/ojluni/src/main/native/ |
D | Math.c | 50 return acos(d); in Math_acos() 147 FAST_NATIVE_METHOD(Math, acos, "(D)D"),
|
D | jfdlibm.h | 38 #define acos jacos macro
|
D | fdlibm.h | 117 extern double acos __P((double));
|
D | StrictMath.c | 164 NATIVE_METHOD(StrictMath, acos, "(D)D"),
|
/libcore/luni/src/test/resources/ |
D | math_important_numbers.csv | 59 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 …]
|
D | math_tests.csv | 5026 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/ |
D | StrictMath.java | 156 public static native double acos(double a); in acos() method in StrictMath
|
D | Math.java | 203 public static native double acos(double a); in acos() method in Math
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | StrictMathBenchmark.java | 85 StrictMath.acos(d); in timeAcos()
|
D | MathBenchmark.java | 69 result = Math.acos(d); in timeAcos()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | OldAndroidStrictMathTest.java | 69 .acos(ADJ / HYP)) == ADJ / HYP); in testAcosD() 144 .acos(ADJ / HYP)) == ADJ / HYP); in testCosD()
|
D | OldAndroidMathTest.java | 85 double r = Math.cos(Math.acos(ADJ / HYP)); in testAcosD()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | StrictMathTest.java | 92 .acos(ADJ / HYP)) == ADJ / HYP); in test_acosD() 314 .acos(ADJ / HYP)) == ADJ / HYP); in test_cosD()
|
D | MathTest.java | 79 double r = Math.cos(Math.acos(ADJ / HYP)); in test_acosD()
|