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

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
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) */
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Djfdlibm.h39 #define asin jasin macro
H A Dfdlibm.h118 extern double asin __P((double));
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java222 * The math:asin function returns the arcsine value of a number.
227 public static double asin(double num) method in class:ExsltMath
229 return Math.asin(num);
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java170 public static double asin(double a) { method in class:Math
171 return StrictMath.asin(a); // default impl. delegates to StrictMath
H A DStrictMath.java54 * {@code asin}, {@code acos}, {@code atan},
130 public static native double asin(double a); method in class:StrictMath
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftChannel.java1074 // This produce asin-like curve
1076 double x = -Math.asin((value / 128.0) * 2 - 1) / Math.PI + 0.5;

Completed in 72 milliseconds