/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_creall.c | 32 creall(long double complex z) function
|
s_conjl.c | 37 return (cpackl(creall(z), -cimagl(z)));
|
s_cargl.c | 37 return (atan2l(cimagl(z), creall(z)));
|
w_cabsl.c | 19 return hypotl(creall(z), cimagl(z));
|
s_cprojl.c | 39 if (!isinf(creall(z)) && !isinf(cimagl(z)))
|
s_csqrtl.c | 56 a = creall(z);
|
/external/clang/test/CodeGen/ |
libcalls-complex.c | 6 extern long double creall(long double _Complex); 19 return creall(z); 20 // CHECK-NO-NOT: call x86_fp80 @creall 21 // CHECK-YES: call x86_fp80 @creall
|
ppc64-complex-parms.c | 5 long double creall(_Complex long double); 20 return creall(x);
|
ppc64-complex-return.c | 6 long double creall(_Complex long double); 75 return creall(foo_long_double(2.0L - 2.5Li));
|
complex-builtints.c | 13 extern long double creall (long double _Complex);
|
libcall-declarations.c | 231 long double creall(long double _Complex); 308 F(crealf), F(creall), F(csin), F(csinf), F(csinl),
|
/bionic/libm/include/ |
complex.h | 76 long double creall(long double complex) __pure2;
|
/development/ndk/platforms/android-L/include/ |
complex.h | 76 long double creall(long double complex) __pure2;
|
/external/compiler-rt/test/builtins/Unit/ |
divtc3_test.c | 33 if (isinf(creall(x)) || isinf(cimagl(x))) 35 if (isnan(creall(x)) && isnan(cimagl(x))) 37 if (isnan(creall(x))) 45 if (creall(x) == 0) 56 // a, b, c, d, creall(r), cimagl(r));
|
divxc3_test.c | 33 if (isinf(creall(x)) || isinf(cimagl(x))) 35 if (isnan(creall(x)) && isnan(cimagl(x))) 37 if (isnan(creall(x))) 45 if (creall(x) == 0) 56 // a, b, c, d, creall(r), cimagl(r));
|
multc3_test.c | 33 if (isinf(creall(x)) || isinf(cimagl(x))) 35 if (isnan(creall(x)) && isnan(cimagl(x))) 37 if (isnan(creall(x))) 45 if (creall(x) == 0) 56 // a, b, c, d, creall(r), cimagl(r));
|
mulxc3_test.c | 33 if (isinf(creall(x)) || isinf(cimagl(x))) 35 if (isnan(creall(x)) && isnan(cimagl(x))) 37 if (isnan(creall(x))) 45 if (creall(x) == 0) 56 // a, b, c, d, creall(r), cimagl(r));
|
/external/ltrace/etc/ |
libm.so.conf | 118 ldouble creall(ldouble_complex);
|
/external/clang/lib/Headers/ |
tgmath.h | 1365 __tg_creal(long double _Complex __x) {return creall(__x);}
|