Home
last modified time | relevance | path

Searched refs:complex (Results 251 – 275 of 49180) sorted by relevance

1...<<11121314151617181920>>...1968

/dports/games/warmux/warmux-11.04/build/symbian/lib/stlport/src/
H A Dcomplex_trig.cpp68 static complex<_Tp> sinT(const complex<_Tp>& z) { in sinT()
73 _STLP_DECLSPEC complex<float> _STLP_CALL sin(const complex<float>& z) in sin()
76 _STLP_DECLSPEC complex<double> _STLP_CALL sin(const complex<double>& z) in sin()
87 static complex<_Tp> cosT(const complex<_Tp>& z) { in cosT()
92 _STLP_DECLSPEC complex<float> _STLP_CALL cos(const complex<float>& z) in cos()
95 _STLP_DECLSPEC complex<double> _STLP_CALL cos(const complex<double>& z) in cos()
106 static complex<_Tp> tanT(const complex<_Tp>& z, const _Tp& Tp_limit) { in tanT()
118 _STLP_DECLSPEC complex<float> _STLP_CALL tan(const complex<float>& z) in tan()
132 static complex<_Tp> sinhT(const complex<_Tp>& z) { in sinhT()
137 _STLP_DECLSPEC complex<float> _STLP_CALL sinh(const complex<float>& z) in sinh()
[all …]
H A Dcomplex.cpp167 static complex<_Tp> sqrtT(const complex<_Tp>& z) { in sqrtT()
202 static complex<_Tp> expT(const complex<_Tp>& z) { in expT()
222 complex<_Tp> r; in log10T()
246 static complex<_Tp> logT(const complex<_Tp>& z) { in logT()
247 complex<_Tp> r; in logT()
267 static complex<_Tp> powT(const _Tp& a, const complex<_Tp>& b) { in powT()
276 static complex<_Tp> powT(const complex<_Tp>& z_in, int n) { in powT()
286 static complex<_Tp> powT(const complex<_Tp>& a, const _Tp& b) { in powT()
296 static complex<_Tp> powT(const complex<_Tp>& a, const complex<_Tp>& b) { in powT()
314 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const complex<float>& b) in pow()
[all …]
/dports/math/gap/gap-4.11.0/pkg/simpcomp/src/
H A Dreduce_complex.cpp22 if (complex.dimension() == 0) in reduce_complex()
28 MovableComplex minimalComplex = complex; in reduce_complex()
35 if (complex.dimension() < 3) in reduce_complex()
44 else if (complex.dimension() == 3) in reduce_complex()
82 else if (complex.dimension() == 4) in reduce_complex()
197 … bistellar_move_list_t temp = complex.validMoves(complex.dimension() + 1 - i); in reduce_complex()
214 … bistellar_move_list_t temp = complex.validMoves(complex.dimension() + 1 - i); in reduce_complex()
226 … bistellar_move_list_t temp = complex.validMoves(complex.dimension() + 1 - i); in reduce_complex()
261 complex.moveComplex(move); in reduce_complex()
265 minimalComplex = complex; in reduce_complex()
[all …]
/dports/science/jdftx/jdftx-1.6.0/fluid1D/core/
H A Dscalar.h49 struct complex struct
68 __hostanddev__ complex operator+(const complex& c) const { return complex(x+c.x, y+c.y); }
69 __hostanddev__ complex operator+(double r) const { return complex(x+r, y); }
72 __hostanddev__ complex operator-(const complex& c) const { return complex(x-c.x, y-c.y); }
73 __hostanddev__ complex operator-(double r) const { return complex(x-r, y); }
74 __hostanddev__ complex operator-() const { return complex(-x, -y); }
77 …__hostanddev__ complex operator*(const complex& c) const { return complex(x*c.x-y*c.y, y*c.x+x*c.y…
81 …__hostanddev__ complex operator/(const complex& c) const { return complex(x*c.x+y*c.y, y*c.x-x*c.y…
86 __hostanddev__ complex conj() const { return complex(x,-y); } in conj() argument
93 __hostanddev__ complex conj(const complex& c) { return c.conj(); } in conj()
[all …]
/dports/science/octopus/octopus-10.5/testsuite/components/
H A D18-interpolation.test54 match ; Interpolation point complex 1; GREPFIELD(out, 'Random point complex 1 error:', 6) ; 0.0
55 match ; Interpolation point complex 2; GREPFIELD(out, 'Random point complex 2 error:', 6) ; 0.0
56 match ; Interpolation point complex 3; GREPFIELD(out, 'Random point complex 3 error:', 6) ; 0.0
57 match ; Interpolation point complex 4; GREPFIELD(out, 'Random point complex 4 error:', 6) ; 0.0
58 match ; Interpolation point complex 5; GREPFIELD(out, 'Random point complex 5 error:', 6) ; 0.0
59 match ; Interpolation point complex 6; GREPFIELD(out, 'Random point complex 6 error:', 6) ; 0.0
60 match ; Interpolation point complex 7; GREPFIELD(out, 'Random point complex 7 error:', 6) ; 0.0
61 match ; Interpolation point complex 8; GREPFIELD(out, 'Random point complex 8 error:', 6) ; 0.0
62 match ; Interpolation point complex 9; GREPFIELD(out, 'Random point complex 9 error:', 6) ; 0.0
63 match ; Interpolation point complex 10; GREPFIELD(out, 'Random point complex 20 error:', 6) ; 0.0
[all …]
/dports/science/jdftx/jdftx-1.6.0/jdftx/core/
H A DBlasExtra.h121 const complex& sX, const complex* X, const int incX,
122 const complex& sY, const complex* Y, const int incY,
128 const complex& sX, const complex* X, const int incX,
129 const complex& sY, const complex* Y, const int incY,
136 const complex& alpha, const complex *A, const int lda, const complex *B, const int ldb,
137 const complex& beta, complex *C, const int ldc);
141 const complex& alpha, const complex *A, const int lda, const complex *B, const int ldb,
142 const complex& beta, complex *C, const int ldc);
277 void eblas_zaxpy(int N, const complex& a, const complex* x, int incx, complex* y, int incy);
279 complex eblas_zdotc(int N, const complex* x, int incx, const complex* y, int incy);
[all …]
H A Dscalar.h67 struct complex struct
86 __hostanddev__ complex operator+(const complex& c) const { return complex(x+c.x, y+c.y); }
87 __hostanddev__ complex operator+(double r) const { return complex(x+r, y); }
90 __hostanddev__ complex operator-(const complex& c) const { return complex(x-c.x, y-c.y); }
91 __hostanddev__ complex operator-(double r) const { return complex(x-r, y); }
92 __hostanddev__ complex operator-() const { return complex(-x, -y); }
95 …__hostanddev__ complex operator*(const complex& c) const { return complex(x*c.x-y*c.y, y*c.x+x*c.y…
99 …__hostanddev__ complex operator/(const complex& c) const { return complex(x*c.x+y*c.y, y*c.x-x*c.y…
116 __hostanddev__ complex operator+(double r, const complex& c) { return c+r; }
118 __hostanddev__ complex operator*(double r, const complex& c) { return c*r; }
[all …]
/dports/math/lapack++/lapackpp-2.5.4/include/
H A Dlacomplex146 // complex (const complex<_Tp>&);
148 complex(const complex<_Up>&);
150 complex(const std::complex<_Tp>&);
203 complex<_Tp>::complex(const complex<_Up>& __z)
209 complex<_Tp>::complex(const std::complex<_Tp>& __z)
322 complex<_Tp>::complex(COMPLEX c)
599 complex(const complex<float>&);
602 complex(const std::complex<double>&);
615 // complex& operator= (const complex&);
661 complex<double>::complex(const std::complex<double>&__s)
[all …]
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/STLport-5.2.1/src/
H A Dcomplex.cpp167 static complex<_Tp> sqrtT(const complex<_Tp>& z) { in sqrtT()
202 static complex<_Tp> expT(const complex<_Tp>& z) { in expT()
222 complex<_Tp> r; in log10T()
246 static complex<_Tp> logT(const complex<_Tp>& z) { in logT()
247 complex<_Tp> r; in logT()
267 static complex<_Tp> powT(const _Tp& a, const complex<_Tp>& b) { in powT()
276 static complex<_Tp> powT(const complex<_Tp>& z_in, int n) { in powT()
286 static complex<_Tp> powT(const complex<_Tp>& a, const _Tp& b) { in powT()
296 static complex<_Tp> powT(const complex<_Tp>& a, const complex<_Tp>& b) { in powT()
314 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const complex<float>& b) in pow()
[all …]
/dports/science/qmcpack/qmcpack-3.11.0/src/QMCWaveFunctions/detail/CUDA_legacy/
H A Ddelayed_update.h215 std::complex<float>* U_d[],
249 void update_onemove(std::complex<float>* buff[],
265 void multi_row_copy(std::complex<float>* dest[],
266 std::complex<float>* src[],
293 void copy_delayed(std::complex<float>* lemma_lu[],
294 std::complex<float>* lemma[],
295 std::complex<float>* ainv_row[],
359 void update_onemove(std::complex<double>* buff[],
375 void multi_row_copy(std::complex<double>* dest[],
376 std::complex<double>* src[],
[all …]
/dports/math/armadillo/armadillo-10.7.1/include/armadillo_bits/
H A Dupgrade_val.hpp71 typedef std::complex<T> T1_result;
74 arma_inline static const std::complex<T>& apply(const std::complex<T>& x) { return x; } in apply()
87 arma_inline static const std::complex<T>& apply(const std::complex<T>& x) { return x; } in apply()
98 …arma_inline static const std::complex<double> apply(const std::complex<float>& x) { return std::co… in apply()
110 …arma_inline static const std::complex<double> apply(const std::complex<float>& x) { return std::co… in apply()
116 struct upgrade_val< std::complex<float>, std::complex<double> >
121 …arma_inline static const std::complex<double> apply(const std::complex<float>& x) { return std:: in apply()
122 arma_inline static const std::complex<double>& apply(const std::complex<double>& x) { return x; } in apply()
127 struct upgrade_val< std::complex<double>, std::complex<float> >
132 arma_inline static const std::complex<double>& apply(const std::complex<double>& x) { return x; } in apply()
[all …]
/dports/math/R-cran-RcppArmadillo/RcppArmadillo/inst/include/armadillo_bits/
H A Dupgrade_val.hpp71 typedef std::complex<T> T1_result;
74 arma_inline static const std::complex<T>& apply(const std::complex<T>& x) { return x; } in apply()
87 arma_inline static const std::complex<T>& apply(const std::complex<T>& x) { return x; } in apply()
98 …arma_inline static const std::complex<double> apply(const std::complex<float>& x) { return std::co… in apply()
110 …arma_inline static const std::complex<double> apply(const std::complex<float>& x) { return std::co… in apply()
116 struct upgrade_val< std::complex<float>, std::complex<double> >
121 …arma_inline static const std::complex<double> apply(const std::complex<float>& x) { return std:: in apply()
122 arma_inline static const std::complex<double>& apply(const std::complex<double>& x) { return x; } in apply()
127 struct upgrade_val< std::complex<double>, std::complex<float> >
132 arma_inline static const std::complex<double>& apply(const std::complex<double>& x) { return x; } in apply()
[all …]
/dports/lang/gcc10/gcc-10.3.0/libgfortran/intrinsics/
H A Dc99_functions.c928 float complex cexpf (float complex z);
945 double complex cexp (double complex z);
981 float complex clogf (float complex z);
995 double complex clog (double complex z);
1069 float complex cpowf (float complex base, float complex power);
1080 double complex cpow (double complex base, double complex power);
1104 float complex csqrtf (float complex z);
1271 float complex csinhf (float complex a);
1435 float complex csinf (float complex a);
1488 float complex ccosf (float complex a);
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libgfortran/intrinsics/
H A Dc99_functions.c928 float complex cexpf (float complex z);
945 double complex cexp (double complex z);
981 float complex clogf (float complex z);
995 double complex clog (double complex z);
1069 float complex cpowf (float complex base, float complex power);
1080 double complex cpow (double complex base, double complex power);
1104 float complex csqrtf (float complex z);
1271 float complex csinhf (float complex a);
1435 float complex csinf (float complex a);
1488 float complex ccosf (float complex a);
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libgfortran/intrinsics/
H A Dc99_functions.c928 float complex cexpf (float complex z);
945 double complex cexp (double complex z);
981 float complex clogf (float complex z);
995 double complex clog (double complex z);
1069 float complex cpowf (float complex base, float complex power);
1080 double complex cpow (double complex base, double complex power);
1104 float complex csqrtf (float complex z);
1271 float complex csinhf (float complex a);
1435 float complex csinf (float complex a);
1488 float complex ccosf (float complex a);
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libgfortran/intrinsics/
H A Dc99_functions.c928 float complex cexpf (float complex z);
945 double complex cexp (double complex z);
981 float complex clogf (float complex z);
995 double complex clog (double complex z);
1069 float complex cpowf (float complex base, float complex power);
1080 double complex cpow (double complex base, double complex power);
1104 float complex csqrtf (float complex z);
1271 float complex csinhf (float complex a);
1435 float complex csinf (float complex a);
1488 float complex ccosf (float complex a);
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/libgfortran/intrinsics/
H A Dc99_functions.c928 float complex cexpf (float complex z);
945 double complex cexp (double complex z);
981 float complex clogf (float complex z);
995 double complex clog (double complex z);
1069 float complex cpowf (float complex base, float complex power);
1080 double complex cpow (double complex base, double complex power);
1104 float complex csqrtf (float complex z);
1271 float complex csinhf (float complex a);
1435 float complex csinf (float complex a);
1488 float complex ccosf (float complex a);
[all …]
/dports/lang/gcc11/gcc-11.2.0/libgfortran/intrinsics/
H A Dc99_functions.c928 float complex cexpf (float complex z);
945 double complex cexp (double complex z);
981 float complex clogf (float complex z);
995 double complex clog (double complex z);
1069 float complex cpowf (float complex base, float complex power);
1080 double complex cpow (double complex base, double complex power);
1104 float complex csqrtf (float complex z);
1271 float complex csinhf (float complex a);
1435 float complex csinf (float complex a);
1488 float complex ccosf (float complex a);
[all …]
/dports/lang/gcc10-devel/gcc-10-20211008/libgfortran/intrinsics/
H A Dc99_functions.c928 float complex cexpf (float complex z);
945 double complex cexp (double complex z);
981 float complex clogf (float complex z);
995 double complex clog (double complex z);
1069 float complex cpowf (float complex base, float complex power);
1080 double complex cpow (double complex base, double complex power);
1104 float complex csqrtf (float complex z);
1271 float complex csinhf (float complex a);
1435 float complex csinf (float complex a);
1488 float complex ccosf (float complex a);
[all …]
/dports/math/kfr/kfr-4.2.1/include/kfr/simd/
H A Dcomplex.hpp43 using complex = std::complex<T>; typedef
53 struct complex
60 constexpr complex(const complex&) CMT_NOEXCEPT = default;
76 complex& operator=(const complex&) = default;
77 complex& operator=(complex&&) = default;
92 KFR_INTRINSIC complex<T> operator+(const complex<T>& x, const complex<T>& y)
97 KFR_INTRINSIC complex<T> operator-(const complex<T>& x, const complex<T>& y)
102 KFR_INTRINSIC complex<T> operator*(const complex<T>& x, const complex<T>& y)
107 KFR_INTRINSIC complex<T> operator/(const complex<T>& x, const complex<T>& y)
154 KFR_INTRINSIC complex<T> operator-(const complex<T>& x)
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/lib/kokkos/core/src/
H A DKokkos_Complex.hpp69 complex { class
84 complex(const complex&) noexcept = default;
87 complex& operator=(const complex&) noexcept = default;
93 KOKKOS_INLINE_FUNCTION complex(const complex<RType>& other) noexcept in complex() function in Kokkos::complex
105 complex(const std::complex<RealType>& src) noexcept in complex() function in Kokkos::complex
146 complex& operator=(const std::complex<RealType>& src) noexcept { in operator =()
655 const std::complex<RealType1>& x, const complex<RealType2>& y) { in operator *()
729 KOKKOS_INLINE_FUNCTION complex<T> pow(const complex<T>& x, in pow()
784 const complex<T>& x, const complex<U>& y) { in pow()
786 return pow(complex<type>(x), complex<type>(y)); in pow()
[all …]
/dports/devel/kokkos/kokkos-3.4.01/core/src/
H A DKokkos_Complex.hpp69 complex { class
84 complex(const complex&) noexcept = default;
87 complex& operator=(const complex&) noexcept = default;
93 KOKKOS_INLINE_FUNCTION complex(const complex<RType>& other) noexcept in complex() function in Kokkos::complex
105 complex(const std::complex<RealType>& src) noexcept in complex() function in Kokkos::complex
146 complex& operator=(const std::complex<RealType>& src) noexcept { in operator =()
655 const std::complex<RealType1>& x, const complex<RealType2>& y) { in operator *()
729 KOKKOS_INLINE_FUNCTION complex<T> pow(const complex<T>& x, in pow()
784 const complex<T>& x, const complex<U>& y) { in pow()
786 return pow(complex<type>(x), complex<type>(y)); in pow()
[all …]
/dports/science/sparta/sparta-20Oct2021/lib/kokkos/core/src/
H A DKokkos_Complex.hpp69 complex { class
84 complex(const complex&) noexcept = default;
87 complex& operator=(const complex&) noexcept = default;
93 KOKKOS_INLINE_FUNCTION complex(const complex<RType>& other) noexcept in complex() function in Kokkos::complex
105 complex(const std::complex<RealType>& src) noexcept in complex() function in Kokkos::complex
146 complex& operator=(const std::complex<RealType>& src) noexcept { in operator =()
655 const std::complex<RealType1>& x, const complex<RealType2>& y) { in operator *()
729 KOKKOS_INLINE_FUNCTION complex<T> pow(const complex<T>& x, in pow()
784 const complex<T>& x, const complex<U>& y) { in pow()
786 return pow(complex<type>(x), complex<type>(y)); in pow()
[all …]
/dports/science/berkeleygw/BGW-2.0.0/examples/DFT/Zn2O2/ESPRESSO/2_sapo/WFN/
H A Dwfnmerge.inp1 wfn.complex
6 ../WFN1/wfn.complex
7 ../WFN2/wfn.complex
8 ../WFN3/wfn.complex
9 ../WFN4/wfn.complex
10 ../WFN5/wfn.complex
11 ../WFN6/wfn.complex
12 ../WFN7/wfn.complex
13 ../WFN8/wfn.complex
14 ../WFN9/wfn.complex
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gcc.dg/vect/complex/
H A Dcomplex-operations.c19 void MK(fma0, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[restric… in MK()
26 void MK(fma90, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[restri… in MK()
33 void MK(fma180, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[restr… in MK()
40 void MK(fma270, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[restr… in MK()
50 void MK(fma0_snd, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[res… in MK()
57 void MK(fma90_snd, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[re… in MK()
64 void MK(fma180_snd, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[r… in MK()
106 void MK(fms0, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[restric… in MK()
113 void MK(fms90, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[restri… in MK()
120 void MK(fms180, PREF) (TYPE complex a[restrict N], TYPE complex b[restrict N], TYPE complex c[restr… in MK()
[all …]

1...<<11121314151617181920>>...1968