Home | History | Annotate | Download | only in noieee_src

Lines Matching refs:sqrt

45  *	sqrt(x)
56 * sqrt ( 1 + [x/y] ) + x/y
63 * (sqrt(2)+1) + (x-y)/y + -----------------------------
65 * sqrt ( 1 + [x/y] ) + sqrt(2)
74 * hypot(x,y) returns the sqrt(x^2+y^2) with error less than 1 ulps (units
127 /* start computing sqrt(x^2 + y^2) */
131 r=r+sqrt(one+r*r); }
134 r+=t/(sqrt2+sqrt(2.0+t));
212 return(scalb(sqrt(x*x+y*y),exp));