Searched refs:new_y (Results 1 - 2 of 2) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Dcatrig.c148 * If B_is_usable is set to 0, sqrt_A2my2 = sqrt(A*A - y*y), and new_y = y.
150 * rescaled, and new_y is similarly rescaled.
154 double *sqrt_A2my2, double *new_y)
206 *new_y = y;
216 *new_y = y * (2 / DBL_EPSILON);
255 *new_y = y * (4 / DBL_EPSILON / DBL_EPSILON);
277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
323 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
327 ry = atan2(new_y, sqrt_A2my2);
153 do_hard_work(double x, double y, double *rx, int *B_is_usable, double *B, double *sqrt_A2my2, double *new_y) argument
H A Dcatrigf.c89 float *sqrt_A2my2, float *new_y)
116 *new_y = y;
121 *new_y = y * (2 / FLT_EPSILON);
138 *new_y = y * (4 / FLT_EPSILON / FLT_EPSILON);
148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
184 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
188 ry = atan2f(new_y, sqrt_A2my2);
88 do_hard_work(float x, float y, float *rx, int *B_is_usable, float *B, float *sqrt_A2my2, float *new_y) argument

Completed in 28 milliseconds