/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_cimagl.c | 33 cimagl(long double complex z) function
|
s_conjl.c | 37 return (cpackl(creall(z), -cimagl(z)));
|
s_cprojl.c | 39 if (!isinf(creall(z)) && !isinf(cimagl(z))) 42 return (cpackl(INFINITY, copysignl(0.0, cimagl(z))));
|
s_cargl.c | 37 return (atan2l(cimagl(z), creall(z)));
|
w_cabsl.c | 19 return hypotl(creall(z), cimagl(z));
|
s_csqrtl.c | 57 b = cimagl(z);
|
/external/clang/test/CodeGen/ |
libcalls-complex.c | 10 extern long double cimagl(long double _Complex); 37 return cimagl(z); 38 // CHECK-NO-NOT: call x86_fp80 @cimagl 39 // CHECK-YES: call x86_fp80 @cimagl
|
complex-builtints.c | 17 extern long double cimagl (long double _Complex);
|
libcall-declarations.c | 216 long double cimagl(long double _Complex); 305 F(cimagf), F(cimagl), F(conj), F(conjf), F(conjl),
|
/bionic/libm/include/ |
complex.h | 65 long double cimagl(long double complex) __pure2;
|
/development/ndk/platforms/android-L/include/ |
complex.h | 65 long double cimagl(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))) 39 if (cimagl(x) == 0) 43 if (isnan(cimagl(x))) 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))) 39 if (cimagl(x) == 0) 43 if (isnan(cimagl(x))) 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))) 39 if (cimagl(x) == 0) 43 if (isnan(cimagl(x))) 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))) 39 if (cimagl(x) == 0) 43 if (isnan(cimagl(x))) 56 // a, b, c, d, creall(r), cimagl(r));
|
/external/ltrace/etc/ |
libm.so.conf | 122 ldouble cimagl(ldouble_complex);
|
/external/clang/lib/Headers/ |
tgmath.h | 1278 __tg_cimag(long double _Complex __x) {return cimagl(__x);}
|