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

1 2 3 4

  /external/clang/test/CodeGen/
2005-02-20-AggregateSAVEEXPR.c 4 return creal(c);
libcalls-complex.c 2 // RUN: %clang_cc1 -fno-builtin-crealf -fno-builtin-creal -fno-builtin-creall \
8 extern double creal(double _Complex);
16 return creal(z);
17 // CHECK-NO-NOT: call double @creal
18 // 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));
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_creal.c 32 creal(double complex z) function
s_conj.c 37 return (CMPLX(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_csinh.c 55 x = creal(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 81 x = creal(z);
143 z = ctanh(CMPLX(cimag(z), creal(z)));
144 return (CMPLX(cimag(z), creal(z)));
s_ccosh.c 55 x = creal(z);
79 return (CMPLX(creal(z), cimag(z) * copysign(1, x)));
155 return (ccosh(CMPLX(-cimag(z), creal(z))));
catrig.c 281 x = creal(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)));
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/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)));
  /bionic/libm/upstream-netbsd/lib/libm/complex/
clog.c 44 rr = atan2(cimag(z), creal(z));
cpow.c 42 x = creal(z);
  /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

Completed in 625 milliseconds

1 2 3 4