Searched defs:atan2 (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dw_atan2.c28 * wrapper atan2(y,x)
35 double atan2(double y, double x) /* wrapper atan2 */ function
37 double atan2(y,x) /* wrapper atan2 */
48 return __kernel_standard(y,x,3); /* atan2(+-0,+-0) */
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java244 * The math:atan2 function returns the angle ( in radians ) from the X axis to a point (y,x).
250 public static double atan2(double num1, double num2) method in class:ExsltMath
252 return Math.atan2(num1, num2);
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java498 public static double atan2(double y, double x) { method in class:Math
499 return StrictMath.atan2(y, x); // default impl. delegates to StrictMath
H A DStrictMath.java56 * {@code cbrt}, {@code atan2}, {@code pow},
490 public static native double atan2(double y, double x); method in class:StrictMath
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Djfdlibm.h41 #define atan2 jatan2 macro
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp179 // symbols in the standard libraries (eg, atan2, fabs) and would
296 Value* SharkBuilder::atan2() { function in class:SharkBuilder
297 return make_function((address) ::atan2, "dd", "d");

Completed in 1620 milliseconds