Lines Matching refs:ay

166 	long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y;  in casinhl()  local
173 ay = fabsl(y); in casinhl()
185 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinhl()
199 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinhl()
202 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhl()
222 long double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosl() local
232 ay = fabsl(y); in cacosl()
244 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacosl()
258 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacosl()
261 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacosl()
300 long double ax, ay, t; in clog_for_large_values() local
305 ay = fabsl(y); in clog_for_large_values()
306 if (ax < ay) { in clog_for_large_values()
308 ax = ay; in clog_for_large_values()
309 ay = t; in clog_for_large_values()
316 if (ax > QUARTER_SQRT_MAX || ay < SQRT_MIN) in clog_for_large_values()
319 return (CMPLXL(logl(ax * ax + ay * ay) / 2, atan2l(y, x))); in clog_for_large_values()
361 long double x, y, ax, ay, rx, ry; in catanhl() local
366 ay = fabsl(y); in catanhl()
383 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) in catanhl()
387 if (ax < SQRT_3_EPSILON / 2 && ay < SQRT_3_EPSILON / 2) { in catanhl()
392 if (ax == 1 && ay < LDBL_EPSILON) in catanhl()
393 rx = (m_ln2 - logl(ay)) / 2; in catanhl()
395 rx = log1pl(4 * ax / sum_squares(ax - 1, ay)) / 4; in catanhl()
398 ry = atan2l(2, -ay) / 2; in catanhl()
399 else if (ay < LDBL_EPSILON) in catanhl()
400 ry = atan2l(2 * ay, (1 - ax) * (1 + ax)) / 2; in catanhl()
402 ry = atan2l(2 * ay, (1 - ax) * (1 + ax) - ay * ay) / 2; in catanhl()