Searched refs:CMPLXF (Results 1 - 11 of 11) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_csqrtf.c52 return (CMPLXF(0, b));
54 return (CMPLXF(INFINITY, b));
57 return (CMPLXF(a, t)); /* return NaN + NaN i */
67 return (CMPLXF(fabsf(b - b), copysignf(a, b)));
69 return (CMPLXF(a, copysignf(b - b, b)));
83 return (CMPLXF(t, b / (2.0 * t)));
86 return (CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b)));
H A Ds_csinhf.c58 return (CMPLXF(sinhf(x), y));
60 return (CMPLXF(sinhf(x) * cosf(y), coshf(x) * sinf(y)));
66 return (CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y)));
69 z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
70 return (CMPLXF(crealf(z) * copysignf(1, x), cimagf(z)));
74 return (CMPLXF(h * cosf(y), h * h * sinf(y)));
79 return (CMPLXF(x, y - y));
82 return (CMPLXF(x + x, y));
85 return (CMPLXF(y - y, y - y));
89 return (CMPLXF(
[all...]
H A Ds_ccoshf.c58 return (CMPLXF(coshf(x), x * y));
60 return (CMPLXF(coshf(x) * cosf(y), sinhf(x) * sinf(y)));
66 return (CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y)));
69 z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
70 return (CMPLXF(crealf(z), cimagf(z) * copysignf(1, x)));
74 return (CMPLXF(h * h * cosf(y), h * sinf(y)));
79 return (CMPLXF(y - y, x * copysignf(0, y)));
82 return (CMPLXF(x * x, copysignf(0, x) * y));
85 return (CMPLXF(y - y, x * (y - y)));
89 return (CMPLXF(INFINIT
[all...]
H A Ds_conjf.c37 return (CMPLXF(crealf(z), -cimagf(z)));
H A Ds_ctanhf.c54 return (CMPLXF((x + 0) * (y + 0),
57 return (CMPLXF(x,
62 return (CMPLXF(y - y, y - y));
66 return (CMPLXF(copysignf(1, x),
75 return (CMPLXF((beta * rho * s) / denom, t / denom));
82 z = ctanhf(CMPLXF(cimagf(z), crealf(z)));
83 return (CMPLXF(cimagf(z), crealf(z)));
H A Ds_cexpf.c53 return (CMPLXF(expf(x), y));
57 return (CMPLXF(cosf(y), sinf(y)));
62 return (CMPLXF(y - y, y - y));
65 return (CMPLXF(0.0, 0.0));
68 return (CMPLXF(x, y - y));
87 return (CMPLXF(exp_x * cosf(y), exp_x * sinf(y)));
H A Dcatrigf.c159 return (CMPLXF(x, y + y));
161 return (CMPLXF(y, x + x));
163 return (CMPLXF(x + x, y));
164 return (CMPLXF(x + 0.0L + (y + 0), x + 0.0L + (y + 0)));
172 return (CMPLXF(copysignf(crealf(w), x),
189 return (CMPLXF(copysignf(rx, x), copysignf(ry, y)));
195 float complex w = casinhf(CMPLXF(cimagf(z), crealf(z)));
197 return (CMPLXF(cimagf(w), crealf(w)));
217 return (CMPLXF(y + y, -INFINITY));
219 return (CMPLXF(
[all...]
H A Ds_cprojf.c42 return (CMPLXF(INFINITY, copysignf(0.0, cimagf(z))));
H A Dk_expf.c85 return (CMPLXF(cosf(y) * exp_x * scale1 * scale2,
H A Dmath_private.h458 * The C11 standard introduced the macros CMPLX(), CMPLXF() and CMPLXL()
463 #ifndef CMPLXF
465 CMPLXF(float x, float y) function
/bionic/libm/include/
H A Dcomplex.h52 #define CMPLXF(x, y) ((float complex){ x, y }) macro
56 #define CMPLXF(x, y) __builtin_complex((float)(x), (float)(y)) macro

Completed in 306 milliseconds