Lines Matching refs:ax
122 double x, y, t, ax, ay; in csqrt() local
134 ax = fabs(x); in csqrt()
141 D_RE(ans) = ax; in csqrt()
145 D_IM(ans) = ax; in csqrt()
148 D_IM(ans) = D_RE(ans) = ax + ay; in csqrt()
151 D_RE(ans) = sqrt(ax); in csqrt()
154 D_IM(ans) = sqrt(ax); in csqrt()
160 t = sqrt(ax); in csqrt()
162 ax *= twom601; in csqrt()
164 t = two300 * sqrt(ax + sqrt(ax * ax + y * y)); in csqrt()
166 ax *= two599; in csqrt()
168 t = twom300 * sqrt(ax + sqrt(ax * ax + y * y)); in csqrt()
170 t = sqrt(half * (ax + sqrt(ax * ax + ay * ay))); in csqrt()
184 t = sqrt(half * ay + half * ax); in csqrt()
186 t = half * sqrt(two * (ay + ax)); in csqrt()
188 t = sqrt(half * (ay + ax)); in csqrt()
190 ax *= twom601; in csqrt()
192 t = two300 * sqrt(ax + sqrt(ax * ax + y * y)); in csqrt()
194 ax *= two599; in csqrt()
196 t = twom300 * sqrt(ax + sqrt(ax * ax + y * y)); in csqrt()
198 t = sqrt(half * (ax + sqrt(ax * ax + ay * ay))); in csqrt()