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

1 2 3 4 5 6 7

  /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
complex-builtints.c 4 /* Test for builtin conj, creal, cimag. */
12 extern double creal (double _Complex);
  /external/libffi/testsuite/libffi.call/
many_complex.inc 34 T_CONV creal (c1), T_CONV cimag (c1),
35 T_CONV creal (c2), T_CONV cimag (c2),
36 T_CONV creal (c3), T_CONV cimag (c3),
37 T_CONV creal (c4), T_CONV cimag (c4),
38 T_CONV creal (c5), T_CONV cimag (c5),
39 T_CONV creal (c6), T_CONV cimag (c6),
40 T_CONV creal (c7), T_CONV cimag (c7),
41 T_CONV creal (c8), T_CONV cimag (c8),
42 T_CONV creal (c9), T_CONV cimag (c9),
43 T_CONV creal (c10), T_CONV cimag (c10)
    [all...]
complex.inc 7 c = -(2 * creal (c)) + (cimag (c) + 1)* I;
42 T_CONV creal (tc_result), T_CONV cimag (tc_result),
43 T_CONV creal (2.0), T_CONV creal (8.0), tc_int_arg_x, tc_y);
45 CHECK (creal (tc_result) == -2);
return_complex.inc 7 printf ("%f,%fi\n", T_CONV creal (c), T_CONV cimag (c));
32 T_CONV creal (rc), T_CONV cimag (rc),
33 T_CONV creal (rc2), T_CONV cimag (rc2));
cls_complex_va.inc 21 return printf(format, T_CONV creal (p1), T_CONV cimag (p1),
22 T_CONV creal (p2), T_CONV cimag (p2));
35 T_CONV creal (gComplexValue1), T_CONV cimag (gComplexValue1),
36 T_CONV creal (gComplexValue2), T_CONV cimag (gComplexValue2));
cls_complex.inc 15 T_CONV creal (*pa), T_CONV cimag (*pa),
16 T_CONV creal (*pr), T_CONV cimag (*pr));
38 printf("res: %.6f,%.6fi\n", T_CONV creal (res), T_CONV cimag (res));
cls_align_complex.inc 21 a1.a, T_CONV creal (a1.b), T_CONV cimag (a1.b), a1.c,
22 a2.a, T_CONV creal (a2.b), T_CONV cimag (a2.b), a2.c,
23 result.a, T_CONV creal (result.b), T_CONV cimag (result.b), result.c);
79 res_c.a, T_CONV creal (res_c.b), T_CONV cimag (res_c.b), res_c.c);
87 res_c.a, T_CONV creal (res_c.b), T_CONV cimag (res_c.b), res_c.c);
return_complex1.inc 37 T_CONV creal (rc), T_CONV cimag (rc),
38 T_CONV creal (rc2), T_CONV cimag (rc2));
return_complex2.inc 36 T_CONV creal (rc), T_CONV cimag (rc),
37 T_CONV creal (rc2), T_CONV cimag (rc2));
cls_complex_struct.inc 16 T_CONV creal (p.x), T_CONV cimag (p.x),
17 T_CONV creal (p.y), T_CONV cimag (p.y));
complex_int.c 15 c = -(2 * creal (c)) + (cimag (c) + 1)* I;
80 CHECK (creal (tc_result) == -2);
  /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/upstream-freebsd/lib/msun/src/
w_cabs.c 18 return hypot(creal(z), cimag(z));
s_carg.c 37 return (atan2(cimag(z), creal(z)));
s_conj.c 37 return (CMPLX(creal(z), -cimag(z)));
s_creal.c 32 creal(double complex z) function
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_cproj.c 39 if (!isinf(creal(z)) && !isinf(cimag(z)))
  /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 92 fmt(creal(n)), fmt(cimag(n)),
93 fmt(creal(d)), fmt(cimag(d)),
94 fmt(creal(q)), fmt(cimag(q)));
  /prebuilts/go/linux-x86/test/
cmplxdivide.c 92 fmt(creal(n)), fmt(cimag(n)),
93 fmt(creal(d)), fmt(cimag(d)),
94 fmt(creal(q)), fmt(cimag(q)));
  /bionic/libm/upstream-netbsd/lib/libm/complex/
clog.c 44 rr = atan2(cimag(z), creal(z));
  /prebuilts/misc/common/swig/include/2.0.11/d/
dkw.swg 36 DKEYWORD(creal);

Completed in 782 milliseconds

1 2 3 4 5 6 7