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

123

/freebsd-12-stable/contrib/libstdc++/include/backward/
H A Dcomplex.h32 #include <complex>
34 using std::complex;
35 typedef complex<float> float_complex;
36 typedef complex<double> double_complex;
37 typedef complex<long double> long_double_complex;
/freebsd-12-stable/include/
H A Dcomplex.h48 #define complex _Complex macro
53 #define CMPLX(x, y) ((double complex){ x, y })
54 #define CMPLXF(x, y) ((float complex){ x, y })
55 #define CMPLXL(x, y) ((long double complex){ x, y })
65 double cabs(double complex);
66 float cabsf(float complex);
67 long double cabsl(long double complex);
68 double complex cacos(double complex);
69 float complex cacos
[all...]
/freebsd-12-stable/lib/msun/src/
H A Ds_creal.c31 #include <complex.h>
34 creal(double complex z)
H A Ds_crealf.c31 #include <complex.h>
34 crealf(float complex z)
H A Ds_creall.c31 #include <complex.h>
34 creall(long double complex z)
H A Ds_conj.c31 #include <complex.h>
35 double complex
36 conj(double complex z)
H A Ds_conjf.c31 #include <complex.h>
35 float complex
36 conjf(float complex z)
H A Ds_conjl.c31 #include <complex.h>
35 long double complex
36 conjl(long double complex z)
H A Ds_cimag.c31 #include <complex.h>
35 cimag(double complex z)
H A Ds_cimagf.c31 #include <complex.h>
35 cimagf(float complex z)
H A Ds_cimagl.c31 #include <complex.h>
35 cimagl(long double complex z)
H A Ds_carg.c32 #include <complex.h>
36 carg(double complex z)
H A Ds_cargf.c32 #include <complex.h>
36 cargf(float complex z)
H A Ds_cargl.c32 #include <complex.h>
36 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.c32 #include <complex.h>
38 double complex
39 cproj(double complex z)
H A Ds_cprojf.c32 #include <complex.h>
37 float complex
38 cprojf(float complex z)
H A Ds_cprojl.c32 #include <complex.h>
37 long double complex
38 cprojl(long double complex z)
H A Dw_cabs.c11 #include <complex.h>
16 cabs(double complex z)
/freebsd-12-stable/contrib/libstdc++/include/std/
H A Dstd_complex.h1 // The template and inlines for the -*- C++ -*- complex number classes.
31 /** @file complex
55 template<typename _Tp> class complex;
56 template<> class complex<float>;
57 template<> class complex<double>;
58 template<> class complex<long double>;
61 template<typename _Tp> _Tp abs(const complex<_Tp>&);
63 template<typename _Tp> _Tp arg(const complex<_Tp>&);
65 template<typename _Tp> _Tp norm(const complex<_Tp>&);
67 /// Return complex conjugat
115 struct complex struct
194 complex<_Tp>::complex(const _Tp& __r, const _Tp& __i) function in class:complex
200 complex<_Tp>::complex(const complex<_Up>& __z) function in class:complex
1002 struct complex<float> struct
1007 complex(_ComplexT __z) : _M_value(__z) { } function in struct:complex
1062 complex<float>::complex(float r, float i) function in class:complex
1156 struct complex<double> struct
1161 complex(_ComplexT __z) : _M_value(__z) { } function in struct:complex
1215 complex<double>::complex(double __r, double __i) function in class:complex
1309 struct complex<long double> struct
1314 complex(_ComplexT __z) : _M_value(__z) { } function in struct:complex
1352 complex<long double>::complex(long double __r, long double __i) function in class:complex
1464 complex<float>::complex(const complex<double>& __z) function in class:complex
1468 complex<float>::complex(const complex<long double>& __z) function in class:complex
1472 complex<double>::complex(const complex<float>& __z) function in class:complex
1476 complex<double>::complex(const complex<long double>& __z) function in class:complex
1480 complex<long double>::complex(const complex<float>& __z) function in class:complex
1484 complex<long double>::complex(const complex<double>& __z) function in class:complex
[all...]
/freebsd-12-stable/contrib/libstdc++/src/
H A Dcomplex_io.cc1 // The template and inlines for the -*- C++ -*- complex number classes.
30 #include <complex>
36 operator>>(basic_istream<char, char_traits<char> >&, complex<float>&);
41 const complex<float>&);
45 operator>>(basic_istream<char, char_traits<char> >&, complex<double>&);
50 const complex<double>&);
55 complex<long double>&);
60 const complex<long double>&);
66 complex<float>&);
71 const complex<floa
[all...]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
H A Dcomplex.h2 //===--------------------------- complex.h --------------------------------===//
14 complex.h synopsis
32 #include_next <complex.h>
/freebsd-12-stable/lib/msun/tests/
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;
92 static int cfpequal(long double complex, long double complex) __used;
93 static int cfpequal_cs(long double complex, long double complex,
95 static int cfpequal_tol(long double complex, long double complex,
160 cfpequal(long double complex d
[all...]

Completed in 182 milliseconds

123