Searched refs:creal (Results 1 – 12 of 12) sorted by relevance
/external/clang/test/Headers/ |
D | tgmath.c | 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), "");
|
/external/clang/test/CodeGen/ |
D | libcalls-complex.c | 5 extern double creal(double _Complex); 13 return creal(z); in test_creal()
|
D | ppc64-complex-parms.c | 5 double creal(_Complex double); 15 return creal(x); in foo_double()
|
D | ppc64-complex-return.c | 5 double creal(_Complex double); 66 return creal(foo_double(2.0 - 2.5i)); in bar_double()
|
D | 2005-02-20-AggregateSAVEEXPR.c | 4 return creal(c); in foo()
|
D | complex-builtints.c | 12 extern double creal (double _Complex);
|
/external/compiler-rt/test/Unit/ |
D | divdc3_test.c | 30 if (isinf(creal(x)) || isinf(cimag(x))) in classify() 32 if (isnan(creal(x)) && isnan(cimag(x))) in classify() 34 if (isnan(creal(x))) in classify() 42 if (creal(x) == 0) in classify()
|
D | muldc3_test.c | 30 if (isinf(creal(x)) || isinf(cimag(x))) in classify() 32 if (isnan(creal(x)) && isnan(cimag(x))) in classify() 34 if (isnan(creal(x))) in classify() 42 if (creal(x) == 0) in classify()
|
/external/clang/lib/Headers/ |
D | tgmath.h | 1361 __tg_creal(double _Complex __x) {return creal(__x);} in __tg_creal() 1367 #undef creal 1368 #define creal(__x) __tg_creal(__tg_promote1((__x))(__x)) macro
|
/external/llvm/docs/tutorial/ |
D | LangImpl6.rst | 531 def mandleconverger(real imag iters creal cimag) 535 mandleconverger(real*real - imag*imag + creal, 537 iters+1, creal, cimag);
|
D | OCamlLangImpl6.rst | 499 def mandleconverger(real imag iters creal cimag) 503 mandleconverger(real*real - imag*imag + creal, 505 iters+1, creal, cimag);
|
/external/clang/include/clang/Basic/ |
D | Builtins.def | 842 LIBBUILTIN(creal, "dXd", "fnc", "complex.h", ALL_LANGUAGES)
|