/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_cimag.c | 33 cimag(double complex z) function
|
s_conj.c | 37 return (cpack(creal(z), -cimag(z)));
|
s_cproj.c | 39 if (!isinf(creal(z)) && !isinf(cimag(z))) 42 return (cpack(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_ctanh.c | 82 y = cimag(z); 142 z = ctanh(cpack(-cimag(z), creal(z))); 143 return (cpack(cimag(z), -creal(z)));
|
s_csinh.c | 54 y = cimag(z); 77 return (cpack(creal(z) * copysign(1, x), cimag(z))); 155 z = csinh(cpack(-cimag(z), creal(z))); 156 return (cpack(cimag(z), -creal(z)));
|
s_ccosh.c | 54 y = cimag(z); 77 return (cpack(creal(z), cimag(z) * copysign(1, x))); 154 return (ccosh(cpack(-cimag(z), creal(z))));
|
k_exp.c | 93 y = cimag(z);
|
s_cexp.c | 46 y = cimag(z);
|
s_csqrt.c | 57 b = cimag(z);
|
/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);
|
libcall-declarations.c | 214 double cimag(double _Complex); 304 F(ccoshl), F(cexp), F(cexpf), F(cexpl), F(cimag), 502 // CHECK-NOERRNO: declare double @cimag(double, double) [[NUW]] 591 // CHECK-ERRNO: declare double @cimag(double, double) [[NUW]]
|
/bionic/libm/include/ |
complex.h | 63 double cimag(double complex) __pure2;
|
/development/ndk/platforms/android-L/include/ |
complex.h | 63 double cimag(double complex) __pure2;
|
/external/compiler-rt/test/builtins/Unit/ |
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));
|
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));
|
/external/clang/lib/Headers/ |
tgmath.h | 1254 // cimag 1274 __tg_cimag(double _Complex __x) {return cimag(__x);} 1280 #undef cimag macro 1281 #define cimag(__x) __tg_cimag(__tg_promote1((__x))(__x)) macro
|
/external/ltrace/etc/ |
libm.so.conf | 120 double cimag(double_complex);
|