Lines Matching refs:hypot
35 /* HYPOT(X,Y)
50 * 2. Hypot(x,y) is computed by:
54 * hypot = x + -----------------------------
60 * hypot = x + --------------------------------------------------
70 * hypot(x,y) is INF if x or y is +INF or -INF; else
71 * hypot(x,y) is NAN if x or y is NAN.
74 * hypot(x,y) returns the sqrt(x^2+y^2) with error less than 1 ulps (units
105 hypot(double x, double y)
164 * hypot(x,y)
167 * cabs(z) = hypot(x,y) .
176 return hypot(z.x,z.y);
183 return hypot(z->x,z->y);
188 double hypot(x,y)