Searched defs:copysign (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_copysign.c28 * copysign(double x, double y)
29 * copysign(x,y) returns a value with the magnitude of x and
36 double copysign(double x, double y) function
38 double copysign(x,y)
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp59 double copysign(double x, double y) { function
102 if (k > 0x7fe) return hugeX*copysign(hugeX,x); /* overflow */
107 return hugeX*copysign(hugeX,x); /*overflow*/
108 else return tiny*copysign(tiny,x); /*underflow*/

Completed in 108 milliseconds