/bionic/tests/headers/posix/ |
D | complex_h.c | 33 #if !defined(complex) 34 #error complex 54 FUNCTION(cabs, double (*f)(double complex)); in complex_h() 55 FUNCTION(cabsf, float (*f)(float complex)); in complex_h() 56 FUNCTION(cabsl, long double (*f)(long double complex)); in complex_h() 58 FUNCTION(cacos, double complex (*f)(double complex)); in complex_h() 59 FUNCTION(cacosf, float complex (*f)(float complex)); in complex_h() 60 FUNCTION(cacosl, long double complex (*f)(long double complex)); in complex_h() 62 FUNCTION(cacosh, double complex (*f)(double complex)); in complex_h() 63 FUNCTION(cacoshf, float complex (*f)(float complex)); in complex_h() [all …]
|
/bionic/libc/include/ |
D | complex.h | 43 #define complex _Complex macro 47 #define CMPLX(x, y) ((double complex){ x, y }) 48 #define CMPLXF(x, y) ((float complex){ x, y }) 49 #define CMPLXL(x, y) ((long double complex){ x, y }) 56 double complex cacos(double complex __z) __INTRODUCED_IN(23); 57 float complex cacosf(float complex __z) __INTRODUCED_IN(23); 58 long double complex cacosl(long double complex __z) __RENAME_LDBL(cacos, 23, 26); 60 double complex casin(double complex __z) __INTRODUCED_IN(23); 61 float complex casinf(float complex __z) __INTRODUCED_IN(23); 62 long double complex casinl(long double complex __z) __RENAME_LDBL(casin, 23, 26); [all …]
|
/bionic/libm/upstream-netbsd/lib/libm/complex/ |
D | ccosl.c | 37 long double complex 38 ccosl(long double complex z) in ccosl() 40 long double complex w; in ccosl()
|
D | csinl.c | 37 long double complex 38 csinl(long double complex z) in csinl() 40 long double complex w; in csinl()
|
D | csinhl.c | 36 long double complex 37 csinhl(long double complex z) in csinhl() 39 long double complex w; in csinhl()
|
D | ccoshl.c | 36 long double complex 37 ccoshl(long double complex z) in ccoshl() 39 long double complex w; in ccoshl()
|
D | cexpl.c | 36 long double complex 37 cexpl(long double complex z) in cexpl() 39 long double complex w; in cexpl()
|
D | ctanhl.c | 36 long double complex 37 ctanhl(long double complex z) in ctanhl() 39 long double complex w; in ctanhl()
|
D | ctanl.c | 40 long double complex 41 ctanl(long double complex z) in ctanl() 43 long double complex w; in ctanl()
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_cpowl.c | 53 long double complex 54 cpowl(long double complex a, long double complex z) in cpowl() 56 long double complex w; in cpowl()
|
D | s_cpow.c | 54 double complex 55 cpow(double complex a, double complex z) in cpow() 57 double complex w; in cpow()
|
D | s_cpowf.c | 53 float complex 54 cpowf(float complex a, float complex z) in cpowf() 56 float complex w; in cpowf()
|
D | s_conjl.c | 35 long double complex 36 conjl(long double complex z) in conjl()
|
D | s_conjf.c | 35 float complex 36 conjf(float complex z) in conjf()
|
D | s_conj.c | 35 double complex 36 conj(double complex z) in conj()
|
D | s_cprojf.c | 37 float complex 38 cprojf(float complex z) in cprojf()
|
D | s_cprojl.c | 37 long double complex 38 cprojl(long double complex z) in cprojl()
|
D | catrigl.c | 96 static long double complex clog_for_large_values(long double complex z); 166 long double complex 167 casinhl(long double complex z) in casinhl() 171 long double complex w; in casinhl() 213 long double complex 214 casinl(long double complex z) in casinl() 216 long double complex w; in casinl() 222 long double complex 223 cacosl(long double complex z) in cacosl() 228 long double complex w; in cacosl() [all …]
|
D | catrig.c | 65 static double complex clog_for_large_values(double complex z); 276 double complex 277 casinh(double complex z) in casinh() 281 double complex w; in casinh() 337 double complex 338 casin(double complex z) in casin() 340 double complex w = casinh(CMPLX(cimag(z), creal(z))); in casin() 357 double complex 358 cacos(double complex z) in cacos() 363 double complex w; in cacos() [all …]
|
D | catrigf.c | 77 static float complex clog_for_large_values(float complex z); 147 float complex 148 casinhf(float complex z) in casinhf() 152 float complex w; in casinhf() 194 float complex 195 casinf(float complex z) in casinf() 197 float complex w = casinhf(CMPLXF(cimagf(z), crealf(z))); in casinf() 202 float complex 203 cacosf(float complex z) in cacosf() 208 float complex w; in cacosf() [all …]
|
D | s_cproj.c | 38 double complex 39 cproj(double complex z) in cproj()
|
D | s_ctanhf.c | 41 float complex 42 ctanhf(float complex z) in ctanhf() 80 float complex 81 ctanf(float complex z) in ctanf()
|
D | s_ctanh.c | 76 double complex 77 ctanh(double complex z) in ctanh() 140 double complex 141 ctan(double complex z) in ctan()
|
D | s_csinhf.c | 43 float complex 44 csinhf(float complex z) in csinhf() 99 float complex 100 csinf(float complex z) in csinf()
|
/bionic/tests/ |
D | tgmath_test.c | 19 float complex tgmath_h_test_function() { in tgmath_h_test_function() 20 float complex z = 1 + 0.5*I; in tgmath_h_test_function()
|