HomeSort by: relevance | last modified time | path
    Searched defs:new_y (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libm/complex/
catrig.c 171 * If B_is_usable is set to 0, sqrt_A2my2 = sqrt(A*A - y*y), and new_y = y.
173 * rescaled, and new_y is similarly rescaled.
177 double *sqrt_A2my2, double *new_y)
229 *new_y = y;
239 *new_y = y * (2 / DBL_EPSILON);
278 *new_y = y * (4 / DBL_EPSILON / DBL_EPSILON);
300 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local in function:casinh
346 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
350 ry = atan2(new_y, sqrt_A2my2);
catrigf.c 102 float *sqrt_A2my2, float *new_y)
129 *new_y = y;
134 *new_y = y * (2 / FLT_EPSILON);
151 *new_y = y * (4 / FLT_EPSILON / FLT_EPSILON);
161 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local in function:casinhf
197 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
201 ry = atan2f(new_y, sqrt_A2my2);
catrigl.c 136 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)
162 *new_y = y;
167 *new_y= y * (2 / LDBL_EPSILON);
184 *new_y = y * (4/LDBL_EPSILON/LDBL_EPSILON);
194 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local in function:casinhl
228 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
232 ry = atan2l(new_y, sqrt_A2my2);

Completed in 14 milliseconds