Searched defs:sqrt (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dw_sqrt.c28 * wrapper sqrt(x)
34 double sqrt(double x) /* wrapper sqrt */ function
36 double sqrt(x) /* wrapper sqrt */
47 return __kernel_standard(x,x,26); /* sqrt(negative) */
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java322 * The math:sqrt function returns the square root of a number.
327 public static double sqrt(double num) method in class:ExsltMath
329 return Math.sqrt(num);
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java320 public static double sqrt(double a) { method in class:Math
321 return StrictMath.sqrt(a); // default impl. delegates to StrictMath
322 // Note that hardware sqrt instructions
325 // Math.sqrt in software.
1136 * Returns sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>)
1156 * @return sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>)
H A DStrictMath.java251 public static native double sqrt(double a); method in class:StrictMath
1111 * Returns sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>)
1127 * @return sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>)
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Djfdlibm.h48 #define sqrt jsqrt macro
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp300 Value* SharkBuilder::sqrt() { function in class:SharkBuilder
301 return make_function("llvm.sqrt.f64", "d", "d");
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp2056 void sqrt(LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_sqrt, from, tmp, to)); } function in class:LIR_List

Completed in 251 milliseconds