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

/freebsd-current/lib/msun/src/
H A Dcatrig.c147 * If B_is_usable is set to 0, sqrt_A2my2 = sqrt(A*A - y*y), and new_y = y.
149 * rescaled, and new_y is similarly rescaled.
153 double *sqrt_A2my2, double *new_y)
205 *new_y = y;
215 *new_y = y * (2 / DBL_EPSILON);
254 *new_y = y * (4 / DBL_EPSILON / DBL_EPSILON);
276 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
322 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
326 ry = atan2(new_y, sqrt_A2my2);
152 do_hard_work(double x, double y, double *rx, int *B_is_usable, double *B, double *sqrt_A2my2, double *new_y) argument
H A Dcatrigl.c107 long double *B, long double *sqrt_A2my2, long double *new_y)
134 *new_y = y;
139 *new_y = y * (2 / LDBL_EPSILON);
156 *new_y = y * (4 / LDBL_EPSILON / LDBL_EPSILON);
166 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
202 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
206 ry = atan2l(new_y, sqrt_A2my2);
106 do_hard_work(long double x, long double y, long double *rx, int *B_is_usable, long double *B, long double *sqrt_A2my2, long double *new_y) argument
H A Dcatrigf.c88 float *sqrt_A2my2, float *new_y)
115 *new_y = y;
120 *new_y = y * (2 / FLT_EPSILON);
137 *new_y = y * (4 / FLT_EPSILON / FLT_EPSILON);
147 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
183 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
187 ry = atan2f(new_y, sqrt_A2my2);
87 do_hard_work(float x, float y, float *rx, int *B_is_usable, float *B, float *sqrt_A2my2, float *new_y) argument

Completed in 61 milliseconds