Searched refs:asin (Results 1 - 10 of 10) sorted by relevance

/openjdk10/jdk/src/java.base/share/native/libfdlibm/
H A Dw_asin.c28 * wrapper asin(x)
36 double asin(double x) /* wrapper asin */ function
38 double asin(x) /* wrapper asin */
49 return __kernel_standard(x,x,2); /* asin(|x|>1) */
H A Djfdlibm.h39 #define asin jasin macro
H A Dfdlibm.h117 extern double asin __P((double));
/openjdk10/nashorn/test/script/basic/
H A DJDK-8008298.js45 if (Math.asin(0.0) != 0) {
46 fail("Math.asin failed on double value");
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java220 * The math:asin function returns the arcsine value of a number.
225 public static double asin(double num) method in class:ExsltMath
227 return Math.asin(num);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeMath.java165 * ECMA 15.8.2.3 asin(x)
170 * @return asin of argument
173 public static double asin(final Object self, final Object x) { method in class:NativeMath
174 return Math.asin(JSType.toNumber(x));
178 * ECMA 15.8.2.3 asin(x) - specialization for double values
183 * @return asin of argument
186 public static double asin(final Object self, final double x) { method in class:NativeMath
187 return Math.asin(x);
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DStrictMath.java55 * {@code asin}, {@code acos}, {@code atan},
160 public static native double asin(double a); method in class:StrictMath
H A DMath.java205 public static double asin(double a) { method in class:Math
206 return StrictMath.asin(a); // default impl. delegates to StrictMath
/openjdk10/jdk/test/java/lang/Math/
H A DWorstCaseTests.java226 failures += Tests.testBounds("Math.asin", input, Math.asin(input), expected, out);
227 failures += Tests.testBounds("StrictMath.asin", input, StrictMath.asin(input), expected, out);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DSoftChannel.java1090 // This produce asin-like curve
1092 double x = -Math.asin((value / 128.0) * 2 - 1) / Math.PI + 0.5;

Completed in 97 milliseconds