HomeSort by: relevance | last modified time | path
    Searched defs:sqrt_A2my2 (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.
172 * If returning sqrt_A2my2 has potential to result in an underflow, it is
177 double *sqrt_A2my2, double *new_y)
238 *sqrt_A2my2 = A * (2 / DBL_EPSILON);
251 * sqrt_A2my2 = sqrt(Amy*(A+y))
258 *sqrt_A2my2 = sqrt(x) * sqrt((A + y) / 2);
267 *sqrt_A2my2 = sqrt(Amy * (A + y));
276 *sqrt_A2my2 = x * (4 / DBL_EPSILON / DBL_EPSILON) * y /
284 *sqrt_A2my2 = sqrt((1 - y) * (1 + y));
300 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y
    [all...]
catrigf.c 102 float *sqrt_A2my2, float *new_y)
133 *sqrt_A2my2 = A * (2 / FLT_EPSILON);
144 *sqrt_A2my2 = sqrtf(x) * sqrtf((A + y) / 2);
147 *sqrt_A2my2 = sqrtf(Amy * (A + y));
149 *sqrt_A2my2 = x * (4 / FLT_EPSILON / FLT_EPSILON) * y /
153 *sqrt_A2my2 = sqrtf((1 - y) * (1 + y));
161 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y;
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)
166 *sqrt_A2my2 = A * (2 / LDBL_EPSILON);
177 *sqrt_A2my2 = sqrtl(x)*sqrtl((A+y)/2);
180 *sqrt_A2my2 = sqrtl(Amy*(A+y));
182 *sqrt_A2my2 = x * (4/LDBL_EPSILON/LDBL_EPSILON) * y /
186 *sqrt_A2my2 = sqrtl((1-y)*(1+y));
194 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y;
228 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
232 ry = atan2l(new_y, sqrt_A2my2);

Completed in 13 milliseconds