| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/ |
| complex.d | 24 alias creal complex; 28 creal cacosl(creal z); 32 creal casinl(creal z); 36 creal catanl(creal z); 40 creal ccosl(creal z); 44 creal csinl(creal z) [all...] |
| /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
|
| 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);
|
| /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/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| mixed-lang-stack.c | 41 creal(d), cimag(d));
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| mixed-lang-stack.c | 41 creal(d), cimag(d));
|
| /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));
|
| /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));
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| varargs.c | 30 extern double creal (double _Complex); 189 if (creal (max) < creal (x)) max = x; 207 if (creall (max) < creal (x)) max = x; 226 if (creall (max) < creal (x.ldc)) max = x.ldc;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| varargs.c | 30 extern double creal (double _Complex); 189 if (creal (max) < creal (x)) max = x; 207 if (creall (max) < creal (x)) max = x; 226 if (creall (max) < creal (x.ldc)) max = x.ldc;
|