Home
last modified time | relevance | path

Searched refs:Tii (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/dports/math/xblas/xblas-1.0.248/testing/test-trsv/
H A DBLAS_trsv_testgen.c71 float Tii; in BLAS_strsv_testgen() local
105 Tii = xrand(seed); in BLAS_strsv_testgen()
106 T[i * lda + i] = Tii; in BLAS_strsv_testgen()
108 Tii = 1.0; in BLAS_strsv_testgen()
109 T[i * lda + i] = Tii; in BLAS_strsv_testgen()
335 double Tii; in BLAS_dtrsv_testgen() local
369 Tii = xrand(seed); in BLAS_dtrsv_testgen()
372 Tii = 1.0; in BLAS_dtrsv_testgen()
441 b2 = Tii - b1; in BLAS_dtrsv_testgen()
627 float Tii; in BLAS_dtrsv_s_testgen() local
[all …]
/dports/math/xblas/xblas-1.0.248/testing/test-tbsv/
H A DBLAS_tbsv_testgen.c77 float Tii; in BLAS_stbsv_testgen() local
112 Tii = xrand(seed); in BLAS_stbsv_testgen()
114 Tii = 1.0; in BLAS_stbsv_testgen()
120 temp[tempi] = Tii; in BLAS_stbsv_testgen()
211 Tii = 1.0; in BLAS_stbsv_testgen()
368 double Tii; in BLAS_dtbsv_testgen() local
405 Tii = 1.0; in BLAS_dtbsv_testgen()
514 Tii = 1.0; in BLAS_dtbsv_testgen()
687 float Tii; in BLAS_dtbsv_s_testgen() local
724 Tii = 1.0; in BLAS_dtbsv_s_testgen()
[all …]
/dports/math/gsl/gsl-2.7/linalg/
H A Dinvtri.c96 double *Tii = gsl_matrix_ptr(T, i, i); in triangular_inverse_L2() local
97 *Tii = 1.0 / *Tii; in triangular_inverse_L2()
98 aii = -(*Tii); in triangular_inverse_L2()
238 double Tii = gsl_matrix_get(T, i, i); in triangular_singular() local
239 if (Tii == 0.0) in triangular_singular()
H A Dinvtri_complex.c104 gsl_complex * Tii = gsl_matrix_complex_ptr(T, i, i); in complex_tri_invert_L2() local
109 *Tii = gsl_complex_inverse(*Tii); in complex_tri_invert_L2()
110 GSL_REAL(aii) = -GSL_REAL(*Tii); in complex_tri_invert_L2()
111 GSL_IMAG(aii) = -GSL_IMAG(*Tii); in complex_tri_invert_L2()
H A Dtrimult_complex.c88 gsl_complex * Tii = gsl_matrix_complex_ptr(T, i, i); in triangular_multherm_L2() local
89 gsl_complex z0 = *Tii; in triangular_multherm_L2()
96 GSL_REAL(*Tii) = gsl_complex_abs2(*Tii) + norm * norm; in triangular_multherm_L2()
114 GSL_IMAG(*Tii) = 0.0; in triangular_multherm_L2()
H A Dtrimult.c85 double Tii = gsl_matrix_get(T, i, i); in triangular_multsymm_L2() local
102 gsl_blas_dgemv(CblasTrans, 1.0, &m.matrix, &v1.vector, Tii, &v2.vector); in triangular_multsymm_L2()
108 gsl_blas_dscal(Tii, &v1.vector); in triangular_multsymm_L2()
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/
H A Dthree_way.cc86 using Tii = std::tuple<int, int>; in test02() typedef
88 static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) ); in test02()
91 static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) ); in test02()
94 static_assert( !std::three_way_comparable_with<Ti, Tii> ); in test02()
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/
H A Dthree_way.cc86 using Tii = std::tuple<int, int>; in test02() typedef
88 static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) ); in test02()
91 static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) ); in test02()
94 static_assert( !std::three_way_comparable_with<Ti, Tii> ); in test02()
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/
H A Dthree_way.cc86 using Tii = std::tuple<int, int>; in test02() typedef
88 static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) ); in test02()
91 static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) ); in test02()
94 static_assert( !std::three_way_comparable_with<Ti, Tii> ); in test02()
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/
H A Dthree_way.cc86 using Tii = std::tuple<int, int>; in test02() typedef
88 static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) ); in test02()
91 static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) ); in test02()
94 static_assert( !std::three_way_comparable_with<Ti, Tii> ); in test02()
/dports/devel/avr-gcc/gcc-10.2.0/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/
H A Dthree_way.cc86 using Tii = std::tuple<int, int>; in test02() typedef
88 static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) ); in test02()
91 static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) ); in test02()
94 static_assert( !std::three_way_comparable_with<Ti, Tii> ); in test02()
/dports/lang/gcc10-devel/gcc-10-20211008/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/
H A Dthree_way.cc86 using Tii = std::tuple<int, int>; in test02() typedef
88 static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) ); in test02()
91 static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) ); in test02()
94 static_assert( !std::three_way_comparable_with<Ti, Tii> ); in test02()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/
H A Dthree_way.cc86 using Tii = std::tuple<int, int>; in test02() typedef
88 static_assert( check_compare(Tii(1, 2), Tlu(2l, 1u), weak_ordering::less) ); in test02()
91 static_assert( check_compare(Tii(3, 4), Tid(2, 0.9), partial_ordering::greater) ); in test02()
94 static_assert( !std::three_way_comparable_with<Ti, Tii> ); in test02()
/dports/math/py-spreg/spreg-1.2.4/spreg/
H A Ddiagnostics_sur.py181 Tii = trWW * np.identity(n_eq)
183 denom = Tii + tSiS
239 Tii = trWW * np.identity(n_eq) #T1It
241 firstHalf = Tii + tSiS
/dports/math/xblas/xblas-1.0.248/m4/test-trsv/
H A DBLAS_trsv_testgen.m4106 DECLARE(Tii, $2_type)
134 Tii = xrand(seed);
135 SET_VECTOR_ELEMENT(T, i*lda+i, Tii, $2_type)
138 ONE(Tii, $2_type)
139 SET_VECTOR_ELEMENT(T, i*lda+i, Tii, $2_type)
151 DIV(divtemp, $1_type, multemp, $1_type, Tii, $2_type)
165 DIV(divtemp, real_D, multemp, $1_type, Tii, $2_type)
173 DIV(divtemp, $1_type, multemp, $1_type, Tii, $2_type)
185 DIV(divtemp, real_E, multemp, real_E, Tii, $2_type)
/dports/math/xblas/xblas-1.0.248/m4/test-tbsv/
H A DBLAS_tbsv_testgen.m4111 DECLARE(Tii, $2_type)
140 Tii = xrand(seed);
143 ONE(Tii, $2_type)
149 SET_VECTOR_ELEMENT(temp, tempi, Tii, $2_type)
164 DIV(divtemp, $1_type, multemp, $1_type, Tii, $2_type)
178 DIV(divtemp, real_D, multemp, $1_type, Tii, $2_type)
186 DIV(divtemp, $1_type, multemp, $1_type, Tii, $2_type)
198 DIV(divtemp, real_E, multemp, real_E, Tii, $2_type)
212 ONE(Tii, $2_type)
217 SET_VECTOR_ELEMENT(temp, tempi, Tii, $2_type)
/dports/misc/visp/visp-3.4.0/modules/core/src/math/matrix/
H A DvpMatrix_qr.cpp189 double *Tii = gsl_matrix_ptr(gsl_R, i, i); in inverseByQRLapack() local
190 *Tii = 1.0 / (*Tii); in inverseByQRLapack()
191 double aii = -(*Tii); in inverseByQRLapack()
1058 double *Tii = gsl_matrix_ptr(&gsl_inv, i, i); in inverseTriangular()
1059 *Tii = 1.0 / *Tii; in inverseTriangular()
1060 double aii = -(*Tii); in inverseTriangular()
/dports/science/py-pymol/pymol-open-source-2.4.0/test/inp/
H A DC1000viewing.pml372 cmd._dump_floats(cmd.get_extent("1Tii")[0])
373 cmd._dump_floats(cmd.get_extent("1Tii")[1])
379 cmd._dump_floats(cmd.get_extent("1Tii////cA")[0])
380 cmd._dump_floats(cmd.get_extent("1Tii////ca")[1])
/dports/lang/spidermonkey60/firefox-60.9.0/browser/extensions/pocket/locale/ff/
H A Dpocket.properties12 mustbeconnected = Alaa e sago ceŋo-ɗaa e Enternet ngam danndude to Pocket. Tiiɗno ƴeewto ceŋol maa …
/dports/games/tuxpaint-config/tuxpaint-config-0.0.13/src/po/
H A Dach.po161 msgstr "Tii ki dano iyore ma otegi me lanyut cal weng."
210 msgstr "Tii ki rangi mo keken ma olinge"
526 msgstr "Tii &cik me goyo coc iyore mukene"
546 msgstr "Tii & bokci me goc kiyore mukene"
627 msgstr "Tii ki &Diro me gwoko lanyut"
688 msgstr "Tii kwede &Buk macoko ngec mukene."
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/langs/fi_FI/
H A Dbanks.lang64 AccountCard=Tii-kortti
/dports/emulators/qmc2/qmc2-0.195_4/qmc2/data/js/pdfjs/web/locale/ff/
H A Dviewer.properties175 password_invalid=Finnde moƴƴaani. Tiiɗno eto kadi.
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/langs/fi_FI/
H A Dbanks.lang64 AccountCard=Tii-kortti
/dports/www/seahub/seahub-8.0.7-server/media/js/pdf/locale/ff/
H A Dviewer.properties194 password_invalid=Finnde moƴƴaani. Tiiɗno eto kadi.
/dports/x11-fm/rodent/rodent-5.3.16.3/apps/rodent-dotdesktop/po/
H A Dnso.po880 #~ msgstr "Tiišetšo e padile"
936 #~ msgstr "Tiišetšo e padile"

12345678910>>...12