Lines Matching refs:ax
148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local
154 ax = fabsf(x); in casinhf()
167 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinhf()
181 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinhf()
184 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhf()
203 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosf() local
212 ax = fabsf(x); in cacosf()
225 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacosf()
239 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacosf()
242 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacosf()
281 float ax, ay, t; in clog_for_large_values() local
285 ax = fabsf(x); in clog_for_large_values()
287 if (ax < ay) { in clog_for_large_values()
288 t = ax; in clog_for_large_values()
289 ax = ay; in clog_for_large_values()
293 if (ax > FLT_MAX / 2) in clog_for_large_values()
297 if (ax > QUARTER_SQRT_MAX || ay < SQRT_MIN) in clog_for_large_values()
300 return (CMPLXF(logf(ax * ax + ay * ay) / 2, atan2f(y, x))); in clog_for_large_values()
341 float x, y, ax, ay, rx, ry; in catanhf() local
345 ax = fabsf(x); in catanhf()
348 if (y == 0 && ax <= 1) in catanhf()
363 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) in catanhf()
367 if (ax < SQRT_3_EPSILON / 2 && ay < SQRT_3_EPSILON / 2) { in catanhf()
372 if (ax == 1 && ay < FLT_EPSILON) in catanhf()
375 rx = log1pf(4 * ax / sum_squares(ax - 1, ay)) / 4; in catanhf()
377 if (ax == 1) in catanhf()
380 ry = atan2f(2 * ay, (1 - ax) * (1 + ax)) / 2; in catanhf()
382 ry = atan2f(2 * ay, (1 - ax) * (1 + ax) - ay * ay) / 2; in catanhf()