| /src/lib/libm/complex/ |
| cimag.c | 1 /* $NetBSD: cimag.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */ 12 cimag(double complex z) function in typeref:typename:double
|
| cproj.c | 46 * INFINITY + I * copysign(0.0, cimag(z)) 54 if (isinf(creal(z)) || isinf(cimag(z))) { 60 IMAG_PART(w) = copysign(0.0, cimag(z));
|
| ctan.c | 46 d = cos(2.0 * creal(z)) + cosh(2.0 * cimag(z)); 57 w = sin(2.0 * creal(z)) / d + (sinh(2.0 * cimag(z)) / d) * I;
|
| cacos.c | 42 w = (M_PI_2 - creal(w)) - cimag(w) * I;
|
| ccos.c | 43 _cchsh(cimag(z), &ch, &sh);
|
| ccosh.c | 43 y = cimag(z);
|
| cexp.c | 43 y = cimag(z);
|
| clog.c | 44 rr = atan2(cimag(z), creal(z));
|
| csin.c | 43 _cchsh(cimag(z), &ch, &sh);
|
| csinh.c | 43 y = cimag(z);
|
| Makefile.inc | 7 cimag.c creal.c csin.c csinh.c csqrt.c ctan.c ctanh.c \
|
| casin.c | 48 y = cimag(z); 112 zz = 1.0 - creal(zz) - cimag(zz) * I;
|
| ctanh.c | 43 y = cimag(z);
|
| catrig.c | 305 y = cimag(z); 333 return (CMPLX(copysign(creal(w), x), copysign(cimag(w), y))); 361 double complex w = casinh(CMPLX(cimag(z), creal(z))); 363 return (CMPLX(cimag(w), creal(w))); 387 y = cimag(z); 414 rx = fabs(cimag(w)); 460 ry = cimag(w); 471 return (CMPLX(fabs(ry), copysign(rx, cimag(z)))); 484 y = cimag(z); 595 y = cimag(z) [all...] |
| catan.c | 51 y = cimag(z);
|
| cpow.c | 43 y = cimag(z);
|
| csqrt.c | 42 y = cimag (z);
|
| cephes_subr.c | 91 y = fabs(2.0 * cimag(z));
|
| /src/tests/lib/libm/ |
| t_casinh.c | 49 crude_equality(cimag(ci), cimag(b)), \ 51 creal(a), cimag(a), creal(ci), cimag(ci), creal(b), cimag(b)); \
|
| /src/sys/external/bsd/compiler_rt/dist/test/Unit/ |
| muldc3_test.c | 30 if (isinf(creal(x)) || isinf(cimag(x))) 32 if (isnan(creal(x)) && isnan(cimag(x))) 36 if (cimag(x) == 0) 40 if (isnan(cimag(x))) 53 // a, b, c, d, creal(r), cimag(r));
|
| divdc3_test.c | 30 if (isinf(creal(x)) || isinf(cimag(x))) 32 if (isnan(creal(x)) && isnan(cimag(x))) 36 if (cimag(x) == 0) 40 if (isnan(cimag(x))) 53 // a, b, c, d, creal(r), cimag(r));
|
| /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ |
| muldc3_test.c | 31 if (isinf(creal(x)) || isinf(cimag(x))) 33 if (isnan(creal(x)) && isnan(cimag(x))) 37 if (cimag(x) == 0) 41 if (isnan(cimag(x))) 54 // a, b, c, d, creal(r), cimag(r));
|
| divdc3_test.c | 31 if (isinf(creal(x)) || isinf(cimag(x))) 33 if (isnan(creal(x)) && isnan(cimag(x))) 37 if (cimag(x) == 0) 41 if (isnan(cimag(x))) 54 // a, b, c, d, creal(r), cimag(r));
|
| /src/include/ |
| complex.h | 117 /* 7.3.9.2 The cimag functions */ 118 double cimag(double complex);
|
| tgmath.h | 189 #define cimag(a) __TG_CFN1(cimag, (a)) macro
|