Searched refs:sqrt_A2my2 (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/lib/libm/complex/ |
H A D | catrigf.c | 102 float *sqrt_A2my2, float *new_y) in do_hard_work() argument 133 *sqrt_A2my2 = A * (2 / FLT_EPSILON); in do_hard_work() 144 *sqrt_A2my2 = sqrtf(x) * sqrtf((A + y) / 2); in do_hard_work() 147 *sqrt_A2my2 = sqrtf(Amy * (A + y)); in do_hard_work() 149 *sqrt_A2my2 = x * (4 / FLT_EPSILON / FLT_EPSILON) * y / in do_hard_work() 153 *sqrt_A2my2 = sqrtf((1 - y) * (1 + y)); in do_hard_work() 161 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local 197 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhf() 201 ry = atan2f(new_y, sqrt_A2my2); in casinhf()
|
H A D | catrig.c | 177 double *sqrt_A2my2, double *new_y) in do_hard_work() argument 238 *sqrt_A2my2 = A * (2 / DBL_EPSILON); in do_hard_work() 258 *sqrt_A2my2 = sqrt(x) * sqrt((A + y) / 2); in do_hard_work() 267 *sqrt_A2my2 = sqrt(Amy * (A + y)); in do_hard_work() 276 *sqrt_A2my2 = x * (4 / DBL_EPSILON / DBL_EPSILON) * y / in do_hard_work() 284 *sqrt_A2my2 = sqrt((1 - y) * (1 + y)); in do_hard_work() 300 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinh() local 346 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinh() 350 ry = atan2(new_y, sqrt_A2my2); in casinh()
|
H A D | catrigl.c | 136 …ble y, long double *rx, int *B_is_usable, long double *B, long double *sqrt_A2my2, long double *ne… in do_hard_work() argument 166 *sqrt_A2my2 = A * (2 / LDBL_EPSILON); in do_hard_work() 177 *sqrt_A2my2 = sqrtl(x)*sqrtl((A+y)/2); in do_hard_work() 180 *sqrt_A2my2 = sqrtl(Amy*(A+y)); in do_hard_work() 182 *sqrt_A2my2 = x * (4/LDBL_EPSILON/LDBL_EPSILON) * y / in do_hard_work() 186 *sqrt_A2my2 = sqrtl((1-y)*(1+y)); in do_hard_work() 194 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhl() local 228 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhl() 232 ry = atan2l(new_y, sqrt_A2my2); in casinhl()
|