Searched refs:asin (Results 1 – 13 of 13) sorted by relevance
/libcore/ojluni/src/main/native/ |
D | jfdlibm.h | 39 #define asin jasin macro
|
D | fdlibm.h | 118 extern double asin __P((double));
|
D | StrictMath.c | 163 NATIVE_METHOD(StrictMath, asin, "(D)D"),
|
/libcore/luni/src/test/resources/ |
D | math_important_numbers.csv | 72 asin,0x0.0p0,0x0.0p0,0.0 73 asin,-0x0.0p0,-0x0.0p0,-0.0 74 asin,0x1.921fb54442d18p0,0x1.0p0,1.0 75 asin,-0x1.921fb54442d18p0,-0x1.0p0,-1.0 76 asin,-0x1.0c152382d7366p-1,-0x1.0p-1,-0.5 77 asin,0x1.0c152382d7366p-1,0x1.0p-1,0.5 78 asin,-0x1.ce8276c3e139cp-1,-0x1.921fb54442d18p-1,-0.7853981633974483 79 asin,-0x1.1a25cada77072p-1,-0x1.0c152382d7365p-1,-0.5235987755982988 80 asin,-0x1.0f3e506a87b8dp-2,-0x1.0c152382d7365p-2,-0.2617993877991494 81 asin,0x0.0p0,0x0.0p0,0.0 [all …]
|
D | math_tests.csv | 5033 asin,0x0.0p0,0x0.0p0,0.0 5034 asin,-0x0.0p0,-0x0.0p0,-0.0 5035 asin,0x1.921fb54442d18p0,0x1.0p0,1.0 5036 asin,-0x1.921fb54442d18p0,-0x1.0p0,-1.0 5037 asin,-0x1.0c152382d7366p-1,-0x1.0p-1,-0.5 5038 asin,0x1.0c152382d7366p-1,0x1.0p-1,0.5 5039 asin,0x0.0p0,0x0.0p0,0.0
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StrictMath.java | 159 public static native double asin(double a); in asin() method in StrictMath
|
D | Math.java | 208 public static native double asin(double a); in asin() method in Math
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | StrictMathBenchmark.java | 91 StrictMath.asin(d); in timeAsin()
|
D | MathBenchmark.java | 77 result = Math.asin(d); in timeAsin()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | OldAndroidStrictMathTest.java | 75 .asin(OPP / HYP)) == OPP / HYP); in testAsinD() 505 .asin(OPP / HYP)) == OPP / HYP); in testSinD()
|
D | OldAndroidMathTest.java | 94 double r = Math.sin(Math.asin(OPP / HYP)); in testAsinD()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | StrictMathTest.java | 101 .asin(OPP / HYP)) == OPP / HYP); in test_asinD() 1355 .asin(OPP / HYP)) == OPP / HYP); in test_sinD()
|
D | MathTest.java | 91 double r = Math.sin(Math.asin(OPP / HYP)); in test_asinD()
|