Searched refs:cimag (Results 1 - 24 of 24) sorted by relevance

/freebsd-current/lib/msun/src/
H A Ds_cimag.c33 cimag(double complex z) function
H A Ds_conj.c37 return (CMPLX(creal(z), -cimag(z)));
H A Ds_carg.c36 return (atan2(cimag(z), creal(z)));
H A Ds_cproj.c39 if (!isinf(creal(z)) && !isinf(cimag(z)))
42 return (CMPLX(INFINITY, copysign(0.0, cimag(z))));
H A Dw_cabs.c15 return hypot(creal(z), cimag(z));
H A Ds_csinh.c55 y = cimag(z);
78 return (CMPLX(creal(z) * copysign(1, x), cimag(z)));
154 z = csinh(CMPLX(cimag(z), creal(z)));
155 return (CMPLX(cimag(z), creal(z)));
H A Ds_ctanh.c81 y = cimag(z);
144 z = ctanh(CMPLX(cimag(z), creal(z)));
145 return (CMPLX(cimag(z), creal(z)));
H A Ds_ccosh.c55 y = cimag(z);
78 return (CMPLX(creal(z), cimag(z) * copysign(1, x)));
155 return (ccosh(CMPLX(-cimag(z), creal(z))));
H A Dcatrig.c281 y = cimag(z);
309 return (CMPLX(copysign(creal(w), x), copysign(cimag(w), y)));
337 double complex w = casinh(CMPLX(cimag(z), creal(z)));
339 return (CMPLX(cimag(w), creal(w)));
363 y = cimag(z);
390 rx = fabs(cimag(w));
436 ry = cimag(w);
447 return (CMPLX(fabs(ry), copysign(rx, cimag(z))));
460 y = cimag(z);
576 y = cimag(
[all...]
H A Ds_cpow.c58 y = cimag (z);
H A Ds_csqrtf.c41 b = cimag(z);
H A Dk_exp.c92 y = cimag(z);
H A Ds_cexp.c46 y = cimag(z);
H A Ds_csqrt.c45 b = cimag(z);
H A Ds_clog.c51 y = cimag(z);
/freebsd-current/lib/msun/tests/
H A Dconj_test.c49 static double (*libcimag)(double complex) = cimag;
81 __imag__ expected = -cimag(in);
93 "conjf(%#.2g + %#.2gI): wrong value", creal(in), cimag(in)
97 cimag(in), fetestexcept(FE_ALL_EXCEPT));
101 "conj(%#.2g + %#.2gI): wrong value", creal(in), cimag(in));
104 cimag(in), fetestexcept(FE_ALL_EXCEPT));
108 "conjl(%#.2g + %#.2gI): wrong value", creal(in), cimag(in));
111 cimag(in), fetestexcept(FE_ALL_EXCEPT));
H A Dtest-utils.h178 fpequal_cs(cimag(_x), cimag(_y), (checksign & CS_IMAG) != 0); \
187 fpequal_tol(cimag(_x), cimag(_y), tol, flags)); \
H A Dctrig_test.c326 printf("%a %a\n", creal(z), cimag(z));
327 printf("%a %a\n", creal(ctanhf(z)), cimag(ctanhf(z)));
/freebsd-current/contrib/netbsd-tests/lib/libm/
H A Dt_casinh.c49 crude_equality(cimag(ci), cimag(b)), \
51 creal(a), cimag(a), creal(ci), cimag(ci), creal(b), cimag(b)); \
/freebsd-current/lib/msun/
H A DMakefile174 cimag.3 clog.3 copysign.3 cos.3 cosh.3 cospi.3 \
205 MLINKS+=cimag.3 cimagf.3 cimag.3 cimagl.3 \
206 cimag.3 conj.3 cimag.3 conjf.3 cimag.3 conjl.3 \
207 cimag.3 cproj.3 cimag.3 cprojf.3 cimag.3 cprojl.3 \
208 cimag
[all...]
/freebsd-current/include/
H A Dcomplex.h101 double cimag(double complex) __pure2;
H A Dtgmath.h205 #define cimag(x) __tg_simple(x, cimag) macro
/freebsd-current/tools/regression/include/tgmath/
H A Dtgmath.c158 TGMACRO_COMPLEX_REAL_RET(cimag)
604 PRINT("cimag",
605 PASS_REAL_ARG_REAL_RET_(cimag, _complex) &&
606 PASS_COMPLEX_ARG_REAL_RET(cimag));
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A Dtgmath.h1247 // cimag
1267 __tg_cimag(double _Complex __x) {return cimag(__x);}
1273 #undef cimag macro
1274 #define cimag(__x) __tg_cimag(__tg_promote1((__x))(__x)) macro

Completed in 223 milliseconds