/src/lib/libm/complex/ |
creal.c | 1 /* $NetBSD: creal.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */ 12 creal(double complex z) function in typeref:typename:double
|
ccos.c | 44 w = cos(creal(z)) * ch - (sin(creal(z)) * sh) * I;
|
csin.c | 44 w = sin(creal(z)) * ch + (cos(creal(z)) * sh) * I;
|
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;
|
ccosh.c | 42 x = creal(z);
|
cexp.c | 42 x = creal(z);
|
clog.c | 44 rr = atan2(cimag(z), creal(z));
|
csinh.c | 42 x = creal(z);
|
Makefile.inc | 7 cimag.c creal.c csin.c csinh.c csqrt.c ctan.c ctanh.c \
|
casin.c | 47 x = creal(z); 112 zz = 1.0 - creal(zz) - cimag(zz) * I;
|
cproj.c | 54 if (isinf(creal(z)) || isinf(cimag(z))) {
|
ctanh.c | 42 x = creal(z);
|
catan.c | 50 x = creal(z);
|
cpow.c | 42 x = creal(z);
|
catrig.c | 304 x = creal(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))); 386 x = creal(z); 415 ry = creal(w) + m_ln2; 459 rx = creal(w); 483 x = creal(z); 541 * the code creal(1/z), because the imaginary part may produce an unwanted 594 x = creal(z) [all...] |
csqrt.c | 41 x = creal (z);
|
cephes_subr.c | 90 x = fabs(2.0 * creal(z));
|
/src/tests/lib/libm/ |
t_casinh.c | 48 ATF_CHECK_MSG(crude_equality(creal(ci),creal(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))) 34 if (isnan(creal(x))) 42 if (creal(x) == 0) 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))) 34 if (isnan(creal(x))) 42 if (creal(x) == 0) 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))) 35 if (isnan(creal(x))) 43 if (creal(x) == 0) 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))) 35 if (isnan(creal(x))) 43 if (creal(x) == 0) 54 // a, b, c, d, creal(r), cimag(r));
|
/src/include/ |
complex.h | 132 /* 7.3.9.5 The creal functions */ 133 double creal(double complex);
|
tgmath.h | 192 #define creal(a) __TG_CFN1(creal, (a)) macro
|