Home
last modified time | relevance | path

Searched refs:complex (Results 1 – 25 of 59) sorted by relevance

123

/bionic/tests/headers/posix/
Dcomplex_h.c33 #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/
Dcomplex.h43 #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/
Dccosl.c37 long double complex
38 ccosl(long double complex z) in ccosl()
40 long double complex w; in ccosl()
Dcsinl.c37 long double complex
38 csinl(long double complex z) in csinl()
40 long double complex w; in csinl()
Dcsinhl.c36 long double complex
37 csinhl(long double complex z) in csinhl()
39 long double complex w; in csinhl()
Dccoshl.c36 long double complex
37 ccoshl(long double complex z) in ccoshl()
39 long double complex w; in ccoshl()
Dcexpl.c36 long double complex
37 cexpl(long double complex z) in cexpl()
39 long double complex w; in cexpl()
Dctanhl.c36 long double complex
37 ctanhl(long double complex z) in ctanhl()
39 long double complex w; in ctanhl()
Dctanl.c40 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/
Ds_cpowl.c53 long double complex
54 cpowl(long double complex a, long double complex z) in cpowl()
56 long double complex w; in cpowl()
Ds_cpow.c54 double complex
55 cpow(double complex a, double complex z) in cpow()
57 double complex w; in cpow()
Ds_cpowf.c53 float complex
54 cpowf(float complex a, float complex z) in cpowf()
56 float complex w; in cpowf()
Ds_conjl.c35 long double complex
36 conjl(long double complex z) in conjl()
Ds_conjf.c35 float complex
36 conjf(float complex z) in conjf()
Ds_conj.c35 double complex
36 conj(double complex z) in conj()
Ds_cprojf.c37 float complex
38 cprojf(float complex z) in cprojf()
Ds_cprojl.c37 long double complex
38 cprojl(long double complex z) in cprojl()
Dcatrigl.c96 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 …]
Dcatrig.c65 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 …]
Dcatrigf.c77 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 …]
Ds_cproj.c38 double complex
39 cproj(double complex z) in cproj()
Ds_ctanhf.c41 float complex
42 ctanhf(float complex z) in ctanhf()
80 float complex
81 ctanf(float complex z) in ctanf()
Ds_ctanh.c76 double complex
77 ctanh(double complex z) in ctanh()
140 double complex
141 ctan(double complex z) in ctan()
Ds_csinhf.c43 float complex
44 csinhf(float complex z) in csinhf()
99 float complex
100 csinf(float complex z) in csinf()
/bionic/tests/
Dtgmath_test.c19 float complex tgmath_h_test_function() { in tgmath_h_test_function()
20 float complex z = 1 + 0.5*I; in tgmath_h_test_function()

123