Searched refs:complex (Results 1 - 25 of 92) sorted by relevance

1234

/barrelfish-2018-10-04/include/
H A Dcomplex.h46 #define complex _Complex macro
51 #define CMPLX(x, y) ((double complex){ x, y })
52 #define CMPLXF(x, y) ((float complex){ x, y })
53 #define CMPLXL(x, y) ((long double complex){ x, y })
63 double cabs(double complex);
64 float cabsf(float complex);
65 long double cabsl(long double complex);
66 double complex cacos(double complex);
67 float complex cacos
[all...]
/barrelfish-2018-10-04/lib/msun/src/
H A Ds_creal.c29 #include <complex.h>
32 creal(double complex z)
H A Ds_crealf.c29 #include <complex.h>
32 crealf(float complex z)
H A Ds_creall.c29 #include <complex.h>
32 creall(long double complex z)
H A Ds_conj.c29 #include <complex.h>
33 double complex
34 conj(double complex z)
H A Ds_conjf.c29 #include <complex.h>
33 float complex
34 conjf(float complex z)
H A Ds_conjl.c29 #include <complex.h>
33 long double complex
34 conjl(long double complex z)
H A Ds_cimag.c29 #include <complex.h>
33 cimag(double complex z)
H A Ds_cimagf.c29 #include <complex.h>
33 cimagf(float complex z)
H A Ds_cimagl.c29 #include <complex.h>
33 cimagl(long double complex z)
H A Ds_carg.c30 #include <complex.h>
34 carg(double complex z)
H A Ds_cargf.c30 #include <complex.h>
34 cargf(float complex z)
H A Ds_cargl.c30 #include <complex.h>
34 cargl(long double complex z)
H A Dw_cabsf.c13 #include <complex.h>
19 float complex z;
H A Dw_cabsl.c13 #include <complex.h>
17 cabsl(long double complex z)
H A Ds_cproj.c30 #include <complex.h>
35 double complex
36 cproj(double complex z)
H A Ds_cprojf.c30 #include <complex.h>
35 float complex
36 cprojf(float complex z)
H A Ds_cprojl.c30 #include <complex.h>
35 long double complex
36 cprojl(long double complex z)
H A Dw_cabs.c11 #include <complex.h>
16 cabs(double complex z)
H A Ds_ctanh.c28 * Hyperbolic tangent of a complex argument z = x + I y.
69 #include <complex.h>
74 double complex
75 ctanh(double complex z)
138 double complex
139 ctan(double complex z)
H A Ds_ctanhf.c28 * Hyperbolic tangent of a complex argument z. See s_ctanh.c for details.
34 #include <complex.h>
39 float complex
40 ctanhf(float complex z)
78 float complex
79 ctanf(float complex z)
/barrelfish-2018-10-04/include/cxx/
H A Dcomplex.h2 //===--------------------------- complex.h --------------------------------===//
15 complex.h synopsis
27 #include_next <complex.h>
H A Dtgmath.h17 #include <complex.h>
22 #include <complex.h>
/barrelfish-2018-10-04/usr/tests/msun/
H A Dconj_test.c35 #include <complex.h>
45 static float complex (*libconjf)(float complex) = conjf;
46 static double complex (*libconj)(double complex) = conj;
47 static long double complex (*libconjl)(long double complex) = conjl;
48 static float (*libcrealf)(float complex) = crealf;
49 static double (*libcreal)(double complex) = creal;
50 static long double (*libcreall)(long double complex)
[all...]
H A Dtest-utils.h32 #include <complex.h>
80 static inline long double complex
83 long double complex z;
152 cfpequal(long double complex d1, long double complex d2)
160 cfpequal_cs(long double complex x, long double complex y, int checksign)
167 cfpequal_tol(long double complex x, long double complex y, long double tol,

Completed in 62 milliseconds

1234