Home | History | Annotate | Download | only in complex

Lines Matching defs:ax

194 	long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y;
200 ax = fabsl(x);
212 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
225 if (ax < SQRT_6_EPSILON/4 && ay < SQRT_6_EPSILON/4)
228 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
246 long double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x;
255 ax = fabsl(x);
267 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
281 if (ax < SQRT_6_EPSILON/4 && ay < SQRT_6_EPSILON/4)
284 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x);
323 long double ax, ay, t;
327 ax = fabsl(x);
329 if (ax < ay) {
330 t = ax;
331 ax = ay;
335 if (ax > LDBL_MAX / 2)
338 if (ax > QUARTER_SQRT_MAX || ay < SQRT_MIN)
341 return (CMPLXL(logl(ax*ax + ay*ay) / 2, atan2l(y, x)));
382 long double x, y, ax, ay, rx, ry;
386 ax = fabsl(x);
389 if (y == 0 && ax <= 1)
403 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON)
406 if (ax < SQRT_3_EPSILON/2 && ay < SQRT_3_EPSILON/2) {
411 if (ax == 1 && ay < LDBL_EPSILON) {
419 rx = log1pl(4*ax / sum_squares(ax-1, ay)) / 4;
421 if (ax == 1)
424 ry = atan2l(2*ay, (1-ax)*(1+ax)) / 2;
426 ry = atan2l(2*ay, (1-ax)*(1+ax) - ay*ay) / 2;