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

/seL4-refos-master/libs/libmuslc/src/complex/
H A Dcasinhf.c5 z = casinf(CMPLXF(-cimagf(z), crealf(z)));
6 return CMPLXF(cimagf(z), -crealf(z));
H A Dcatanhf.c5 z = catanf(CMPLXF(-cimagf(z), crealf(z)));
6 return CMPLXF(cimagf(z), -crealf(z));
H A Dcsinf.c5 z = csinhf(CMPLXF(-cimagf(z), crealf(z)));
6 return CMPLXF(cimagf(z), -crealf(z));
H A Dctanf.c5 z = ctanhf(CMPLXF(-cimagf(z), crealf(z)));
6 return CMPLXF(cimagf(z), -crealf(z));
H A Dccosf.c5 return ccoshf(CMPLXF(-cimagf(z), crealf(z)));
H A Dconjf.c5 return CMPLXF(crealf(z), -cimagf(z));
H A Dcsqrtf.c46 return CMPLXF(0, b);
48 return CMPLXF(INFINITY, b);
51 return CMPLXF(a, t); /* return NaN + NaN i */
61 return CMPLXF(fabsf(b - b), copysignf(a, b));
63 return CMPLXF(a, copysignf(b - b, b));
77 return CMPLXF(t, b / (2.0 * t));
80 return CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b));
H A Dccoshf.c51 return CMPLXF(coshf(x), x * y);
53 return CMPLXF(coshf(x) * cosf(y), sinhf(x) * sinf(y));
59 return CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y));
62 z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
63 return CMPLXF(crealf(z), cimagf(z) * copysignf(1, x));
67 return CMPLXF(h * h * cosf(y), h * sinf(y));
72 return CMPLXF(y - y, copysignf(0, x * (y - y)));
76 return CMPLXF(x * x, copysignf(0, x) * y);
77 return CMPLXF(x * x, copysignf(0, (x + x) * y));
81 return CMPLXF(
[all...]
H A Dcsinhf.c51 return CMPLXF(sinhf(x), y);
53 return CMPLXF(sinhf(x) * cosf(y), coshf(x) * sinf(y));
59 return CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y));
62 z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
63 return CMPLXF(crealf(z) * copysignf(1, x), cimagf(z));
67 return CMPLXF(h * cosf(y), h * h * sinf(y));
72 return CMPLXF(copysignf(0, x * (y - y)), y - y);
76 return CMPLXF(x, y);
77 return CMPLXF(x, copysignf(0, y));
81 return CMPLXF(
[all...]
H A Dcexpf.c47 return CMPLXF(expf(x), y);
51 return CMPLXF(cosf(y), sinf(y));
56 return CMPLXF(y - y, y - y);
59 return CMPLXF(0.0, 0.0);
62 return CMPLXF(x, y - y);
81 return CMPLXF(exp_x * cosf(y), exp_x * sinf(y));
H A Dcacosf.c8 return CMPLXF((float)M_PI_2 - crealf(z), -cimagf(z));
H A Dcacoshf.c6 return CMPLXF(-cimagf(z), crealf(z));
H A Dcasinf.c12 w = CMPLXF(1.0 - (x - y)*(x + y), -2.0*x*y);
13 return clogf(CMPLXF(-y, x) + csqrtf(w));
H A Dclogf.c11 return CMPLXF(logf(r), phi);
H A Dcprojf.c6 return CMPLXF(INFINITY, copysignf(0.0, crealf(z)));
H A Dctanhf.c47 return CMPLXF(x, (y == 0 ? y : x * y));
49 return CMPLXF(x, copysignf(0, isinf(y) ? y : sinf(y) * cosf(y)));
53 return CMPLXF(ix ? y - y : x, y - y);
57 return CMPLXF(copysignf(1, x), 4 * sinf(y) * cosf(y) * exp_mx * exp_mx);
65 return CMPLXF((beta * rho * s) / denom, t / denom);
H A D__cexpf.c66 return CMPLXF(cosf(y) * exp_x * scale1 * scale2,
/seL4-refos-master/libs/libmuslc/src/internal/
H A Dlibm.h147 #undef CMPLXF macro
154 #define CMPLXF(x, y) __CMPLX(x, y, float) macro
/seL4-refos-master/libs/libmuslc/include/
H A Dcomplex.h126 #define CMPLXF(x, y) __CMPLX(x, y, float) macro

Completed in 87 milliseconds