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

12

/freebsd-9.3-release/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-9.3-release/include/
H A Dcomplex.h39 #define complex _Complex macro
46 double cabs(double complex);
47 float cabsf(float complex);
48 long double cabsl(long double complex);
49 double carg(double complex);
50 float cargf(float complex);
51 long double cargl(long double complex);
52 double complex cexp(double complex);
53 float complex cexp
[all...]
/freebsd-9.3-release/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)
/freebsd-9.3-release/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-9.3-release/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-9.3-release/contrib/libc++/include/
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>
/freebsd-9.3-release/tools/regression/lib/msun/
H A Dtest-conj.c35 #include <complex.h>
43 static float complex (*libconjf)(float complex) = conjf;
44 static double complex (*libconj)(double complex) = conj;
45 static long double complex (*libconjl)(long double complex) = conjl;
46 static float (*libcrealf)(float complex) = crealf;
47 static double (*libcreal)(double complex) = creal;
48 static long double (*libcreall)(long double complex)
[all...]

Completed in 105 milliseconds

12