Home | History | Annotate | Download | only in complex

Lines Matching defs:sqrt_A2my2

171  * If B_is_usable is set to 0, sqrt_A2my2 = sqrt(A*A - y*y), and new_y = y.
172 * If returning sqrt_A2my2 has potential to result in an underflow, it is
177 double *sqrt_A2my2, double *new_y)
238 *sqrt_A2my2 = A * (2 / DBL_EPSILON);
251 * sqrt_A2my2 = sqrt(Amy*(A+y))
258 *sqrt_A2my2 = sqrt(x) * sqrt((A + y) / 2);
267 *sqrt_A2my2 = sqrt(Amy * (A + y));
276 *sqrt_A2my2 = x * (4 / DBL_EPSILON / DBL_EPSILON) * y /
284 *sqrt_A2my2 = sqrt((1 - y) * (1 + y));
300 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y;
346 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
350 ry = atan2(new_y, sqrt_A2my2);