/prebuilts/misc/common/swig/include/2.0.11/python/ |
ccomplex.i | 19 %swig_cplxflt_convn(float complex, CCplxConst, creal, cimag); 20 %swig_cplxdbl_convn(double complex, CCplxConst, creal, cimag); 21 %swig_cplxdbl_convn(complex, CCplxConst, creal, cimag);
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_cimag.c | 33 cimag(double complex z) function
|
s_conj.c | 37 return (CMPLX(creal(z), -cimag(z)));
|
s_cproj.c | 39 if (!isinf(creal(z)) && !isinf(cimag(z))) 42 return (CMPLX(INFINITY, copysign(0.0, cimag(z))));
|
s_carg.c | 37 return (atan2(cimag(z), creal(z)));
|
w_cabs.c | 18 return hypot(creal(z), cimag(z));
|
s_csinh.c | 56 y = cimag(z); 79 return (CMPLX(creal(z) * copysign(1, x), cimag(z))); 154 z = csinh(CMPLX(cimag(z), creal(z))); 155 return (CMPLX(cimag(z), creal(z)));
|
s_ctanh.c | 82 y = cimag(z); 143 z = ctanh(CMPLX(cimag(z), creal(z))); 144 return (CMPLX(cimag(z), creal(z)));
|
s_ccosh.c | 56 y = cimag(z); 79 return (CMPLX(creal(z), cimag(z) * copysign(1, x))); 155 return (ccosh(CMPLX(-cimag(z), creal(z))));
|
catrig.c | 282 y = cimag(z); 310 return (CMPLX(copysign(creal(w), x), copysign(cimag(w), y))); 338 double complex w = casinh(CMPLX(cimag(z), creal(z))); 340 return (CMPLX(cimag(w), creal(w))); 364 y = cimag(z); 391 rx = fabs(cimag(w)); 437 ry = cimag(w); 448 return (CMPLX(fabs(ry), copysign(rx, cimag(z)))); 461 y = cimag(z); 572 y = cimag(z) [all...] |
k_exp.c | 93 y = cimag(z);
|
s_cexp.c | 46 y = cimag(z);
|
s_csqrt.c | 57 b = cimag(z);
|
/prebuilts/go/darwin-x86/test/ |
cmplxdivide.c | 54 return !isinf(creal(d)) && !isinf(cimag(d)) && (isnan(creal(d)) || isnan(cimag(d))); 88 fmt(creal(n)), fmt(cimag(n)), 89 fmt(creal(d)), fmt(cimag(d)), 90 fmt(creal(q)), fmt(cimag(q)));
|
/prebuilts/go/linux-x86/test/ |
cmplxdivide.c | 54 return !isinf(creal(d)) && !isinf(cimag(d)) && (isnan(creal(d)) || isnan(cimag(d))); 88 fmt(creal(n)), fmt(cimag(n)), 89 fmt(creal(d)), fmt(cimag(d)), 90 fmt(creal(q)), fmt(cimag(q)));
|
/external/clang/test/CodeGen/ |
libcalls-complex.c | 9 extern double cimag(double _Complex); 31 return cimag(z); 32 // CHECK-NO-NOT: call double @cimag 33 // CHECK-YES: call double @cimag
|
complex-builtints.c | 4 /* Test for builtin conj, creal, cimag. */ 16 extern double cimag (double _Complex);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
cmathcalls.h | 126 __MATHDECL (_Mdouble_,cimag, (_Mdouble_complex_ __z)); 140 __MATH_PRECNAME(cimag) (_Mdouble_complex_ __z) __THROW
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
cmathcalls.h | 126 __MATHDECL (_Mdouble_,cimag, (_Mdouble_complex_ __z)); 140 __MATH_PRECNAME(cimag) (_Mdouble_complex_ __z) __THROW
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
cmathcalls.h | 126 __MATHDECL (_Mdouble_,cimag, (_Mdouble_complex_ __z)); 140 __MATH_PRECNAME(cimag) (_Mdouble_complex_ __z) __THROW
|
/external/compiler-rt/test/builtins/Unit/ |
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));
|
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));
|
/development/ndk/platforms/android-21/include/ |
complex.h | 63 double cimag(double complex) __pure2 __NDK_FPABI_MATH__;
|
/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/ |
complex.h | 63 double cimag(double complex) __pure2 __NDK_FPABI_MATH__;
|
/prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/ |
complex.h | 63 double cimag(double complex) __pure2 __NDK_FPABI_MATH__;
|