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

/freebsd-current/lib/msun/src/
H A Ds_csinhf.c57 return (CMPLXF(sinhf(x), y));
59 return (CMPLXF(sinhf(x) * cosf(y), coshf(x) * sinf(y)));
65 return (CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y)));
68 z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
69 return (CMPLXF(crealf(z) * copysignf(1, x), cimagf(z)));
73 return (CMPLXF(h * cosf(y), h * h * sinf(y)));
78 return (CMPLXF(x, y - y));
81 return (CMPLXF(x + x, y));
84 return (CMPLXF(y - y, y - y));
88 return (CMPLXF(
[all...]
H A Ds_ccoshf.c57 return (CMPLXF(coshf(x), x * y));
59 return (CMPLXF(coshf(x) * cosf(y), sinhf(x) * sinf(y)));
65 return (CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y)));
68 z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
69 return (CMPLXF(crealf(z), cimagf(z) * copysignf(1, x)));
73 return (CMPLXF(h * h * cosf(y), h * sinf(y)));
78 return (CMPLXF(y - y, x * copysignf(0, y)));
81 return (CMPLXF(x * x, copysignf(0, x) * y));
84 return (CMPLXF(y - y, x * (y - y)));
88 return (CMPLXF(INFINIT
[all...]
H A Ds_conjf.c37 return (CMPLXF(crealf(z), -cimagf(z)));
H A Ds_csqrtf.c45 return (CMPLXF(0, b));
47 return (CMPLXF(INFINITY, b));
50 return (CMPLXF(a + 0.0L + t, a + 0.0L + t)); /* NaN + NaN i */
60 return (CMPLXF(fabsf(b - b), copysignf(a, b)));
62 return (CMPLXF(a, copysignf(b - b, b)));
66 return (CMPLXF(b + 0.0L + t, b + 0.0L + t)); /* NaN + NaN i */
76 return (CMPLXF(t, b / (2 * t)));
79 return (CMPLXF(fabsf(b) / (2 * t), copysignf(t, b)));
H A Ds_ctanhf.c53 return (CMPLXF(nan_mix(x, y),
56 return (CMPLXF(x,
61 return (CMPLXF(ix ? y - y : x, y - y));
65 return (CMPLXF(copysignf(1, x),
74 return (CMPLXF((beta * rho * s) / denom, t / denom));
81 z = ctanhf(CMPLXF(cimagf(z), crealf(z)));
82 return (CMPLXF(cimagf(z), crealf(z)));
H A Ds_cprojf.c41 return (CMPLXF(INFINITY, copysignf(0.0, cimagf(z))));
H A Ds_cexpf.c52 return (CMPLXF(expf(x), y));
57 return (CMPLXF(c, s));
63 return (CMPLXF(y - y, y - y));
66 return (CMPLXF(0.0, 0.0));
69 return (CMPLXF(x, y - y));
89 return (CMPLXF(exp_x * c, exp_x * s));
H A Dcatrigf.c158 return (CMPLXF(x, y + y));
160 return (CMPLXF(y, x + x));
162 return (CMPLXF(x + x, y));
163 return (CMPLXF(nan_mix(x, y), nan_mix(x, y)));
171 return (CMPLXF(copysignf(crealf(w), x),
188 return (CMPLXF(copysignf(rx, x), copysignf(ry, y)));
194 float complex w = casinhf(CMPLXF(cimagf(z), crealf(z)));
196 return (CMPLXF(cimagf(w), crealf(w)));
216 return (CMPLXF(y + y, -INFINITY));
218 return (CMPLXF(
[all...]
H A Ds_clogf.c69 return (CMPLXF(logf(hypotf(x, y)), v));
74 return (CMPLXF((ay / 2) * ay, v));
75 return (CMPLXF(log1pf(ay * ay) / 2, v));
80 return (CMPLXF(logf(ax), v));
84 return (CMPLXF(logf(hypotf(x * 0x1p-126F, y * 0x1p-126F)) +
87 return (CMPLXF(logf(hypotf(x, y)), v));
91 return (CMPLXF(logf(hypotf(x * 0x1p127F, y * 0x1p127F)) +
96 return (CMPLXF(logf(hypotf(x, y)), v));
138 return (CMPLXF(logf(ay2l + ax2l + sl + sh) / 2, v));
147 return (CMPLXF(log1p
[all...]
H A Ds_cpowf.c60 return (CMPLXF(0.0f, 0.0f));
69 w = CMPLXF(r * cosf (theta), r * sinf (theta));
H A Dk_expf.c85 return (CMPLXF(c * exp_x * scale1 * scale2,
H A Dmath_private.h536 * The C11 standard introduced the macros CMPLX(), CMPLXF() and CMPLXL()
541 #ifndef CMPLXF
543 CMPLXF(float x, float y) function
/freebsd-current/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 87 milliseconds