Searched refs:sqrt_A2my2 (Results 1 – 3 of 3) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | catrig.c | 156 double *sqrt_A2my2, double *new_y) in do_hard_work() argument 217 *sqrt_A2my2 = A * (2 / DBL_EPSILON); in do_hard_work() 237 *sqrt_A2my2 = sqrt(x) * sqrt((A + y) / 2); in do_hard_work() 246 *sqrt_A2my2 = sqrt(Amy * (A + y)); in do_hard_work() 255 *sqrt_A2my2 = x * (4 / DBL_EPSILON / DBL_EPSILON) * y / in do_hard_work() 263 *sqrt_A2my2 = sqrt((1 - y) * (1 + y)); in do_hard_work() 279 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinh() local 325 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinh() 329 ry = atan2(new_y, sqrt_A2my2); in casinh()
|
D | catrigf.c | 91 float *sqrt_A2my2, float *new_y) in do_hard_work() argument 122 *sqrt_A2my2 = A * (2 / FLT_EPSILON); in do_hard_work() 133 *sqrt_A2my2 = sqrtf(x) * sqrtf((A + y) / 2); in do_hard_work() 136 *sqrt_A2my2 = sqrtf(Amy * (A + y)); in do_hard_work() 138 *sqrt_A2my2 = x * (4 / FLT_EPSILON / FLT_EPSILON) * y / in do_hard_work() 142 *sqrt_A2my2 = sqrtf((1 - y) * (1 + y)); in do_hard_work() 150 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local 186 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhf() 190 ry = atan2f(new_y, sqrt_A2my2); in casinhf()
|
D | catrigl.c | 110 long double *B, long double *sqrt_A2my2, long double *new_y) in do_hard_work() argument 141 *sqrt_A2my2 = A * (2 / LDBL_EPSILON); in do_hard_work() 152 *sqrt_A2my2 = sqrtl(x) * sqrtl((A + y) / 2); in do_hard_work() 155 *sqrt_A2my2 = sqrtl(Amy * (A + y)); in do_hard_work() 157 *sqrt_A2my2 = x * (4 / LDBL_EPSILON / LDBL_EPSILON) * y / in do_hard_work() 161 *sqrt_A2my2 = sqrtl((1 - y) * (1 + y)); in do_hard_work() 169 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhl() local 205 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhl() 209 ry = atan2l(new_y, sqrt_A2my2); in casinhl()
|