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

  /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);
libcall-declarations.c 229 double creal(double _Complex);
307 F(cprojl), F(cpow), F(cpowf), F(cpowl), F(creal),
512 // CHECK-NOERRNO: declare double @creal(double, double) [[NUW]]
601 // CHECK-ERRNO: declare double @creal(double, double) [[NUW]]
  /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))));
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), "");
  /bionic/libm/include/
complex.h 74 double creal(double complex) __pure2;
  /development/ndk/platforms/android-L/include/
complex.h 74 double creal(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)))
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));
  /external/clang/lib/Headers/
tgmath.h 1341 // creal
1361 __tg_creal(double _Complex __x) {return creal(__x);}
1367 #undef creal macro
1368 #define creal(__x) __tg_creal(__tg_promote1((__x))(__x)) macro
  /external/ltrace/etc/
libm.so.conf 116 double creal(double_complex);

Completed in 72 milliseconds