HomeSort by relevance Sort by last modified time
    Searched refs:creal (Results 1 - 25 of 49) sorted by null

1 2

  /external/clang/test/CodeGen/
2005-02-20-AggregateSAVEEXPR.c 4 return creal(c);
libcalls-complex.c 5 extern double creal(double _Complex);
13 return creal(z);
14 // CHECK-NO-NOT: call double @creal
15 // CHECK-YES: call double @creal
ppc64-complex-parms.c 4 double creal(_Complex double);
14 return creal(x);
ppc64-complex-return.c 5 double creal(_Complex double);
66 return creal(foo_double(2.0 - 2.5i));
complex-builtints.c 4 /* Test for builtin conj, creal, cimag. */
12 extern double creal (double _Complex);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_creal.c 32 creal(double complex z) function
s_conj.c 37 return (cpack(creal(z), -cimag(z)));
s_carg.c 37 return (atan2(cimag(z), creal(z)));
s_cproj.c 39 if (!isinf(creal(z)) && !isinf(cimag(z)))
w_cabs.c 18 return hypot(creal(z), cimag(z));
s_ctanh.c 81 x = creal(z);
142 z = ctanh(cpack(-cimag(z), creal(z)));
143 return (cpack(cimag(z), -creal(z)));
s_csinh.c 53 x = creal(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 53 x = creal(z);
77 return (cpack(creal(z), cimag(z) * copysign(1, x)));
154 return (ccosh(cpack(-cimag(z), creal(z))));
catrig.c 281 x = creal(z);
310 return (cpack(copysign(creal(w), x), copysign(cimag(w), y)));
338 double complex w = casinh(cpack(cimag(z), creal(z)));
340 return (cpack(cimag(w), creal(w)));
363 x = creal(z);
392 ry = creal(w) + m_ln2;
436 rx = creal(w);
460 x = creal(z);
518 * the code creal(1/z), because the imaginary part may produce an unwanted
571 x = creal(z)
    [all...]
k_exp.c 92 x = creal(z);
s_cexp.c 45 x = creal(z);
s_csqrt.c 56 a = creal(z);
  /external/clang/test/Headers/
tgmath.c 14 // creal
16 _Static_assert(sizeof(creal(f)) == sizeof(f), "");
17 _Static_assert(sizeof(creal(d)) == sizeof(d), "");
18 _Static_assert(sizeof(creal(l)) == sizeof(l), "");
20 _Static_assert(sizeof(creal(fc)) == sizeof(f), "");
21 _Static_assert(sizeof(creal(dc)) == sizeof(d), "");
22 _Static_assert(sizeof(creal(lc)) == sizeof(l), "");
  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
cmathcalls.h 129 __MATHDECL (_Mdouble_,creal, (_Mdouble_complex_ __z));
147 __MATH_PRECNAME(creal) (_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 129 __MATHDECL (_Mdouble_,creal, (_Mdouble_complex_ __z));
147 __MATH_PRECNAME(creal) (_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 129 __MATHDECL (_Mdouble_,creal, (_Mdouble_complex_ __z));
147 __MATH_PRECNAME(creal) (_Mdouble_complex_ __z) __THROW
  /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)))
34 if (isnan(creal(x)))
42 if (creal(x) == 0)
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)))
34 if (isnan(creal(x)))
42 if (creal(x) == 0)
53 // a, b, c, d, creal(r), cimag(r));
  /development/ndk/platforms/android-21/include/
complex.h 74 double creal(double complex) __pure2 __NDK_FPABI__;

Completed in 762 milliseconds

1 2