Searched refs:cols2 (Results 1 – 7 of 7) sorted by relevance
/external/eigen/test/ |
D | lu.cpp | 22 Index rows, cols, cols2; in lu_non_invertible() local 34 cols2 = internal::random<int>(2,EIGEN_TEST_MAX_SIZE); in lu_non_invertible() 38 cols2 = cols = MatrixType::ColsAtCompileTime; in lu_non_invertible() 57 MatrixType m1(rows, cols), m3(rows, cols2); in lu_non_invertible() 58 CMatrixType m2(cols, cols2); in lu_non_invertible() 90 m2 = CMatrixType::Random(cols,cols2); in lu_non_invertible() 92 m2 = CMatrixType::Random(cols,cols2); in lu_non_invertible()
|
D | qr_fullpivoting.cpp | 18 …Index rows = internal::random<Index>(20,200), cols = internal::random<int>(20,200), cols2 = intern… in qr() 45 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 47 m2 = MatrixType::Random(cols,cols2); in qr()
|
D | qr_colpivoting.cpp | 18 …EN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random… in qr() 41 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 43 m2 = MatrixType::Random(cols,cols2); in qr()
|
/external/eigen/test/eigen2/ |
D | eigen2_lu.cpp | 41 int rows = ei_random<int>(20,200), cols = ei_random<int>(20,200), cols2 = ei_random<int>(20,200); in lu_non_invertible() 44 MatrixType m1(rows, cols), m2(cols, cols2), m3(rows, cols2), k(1,1); in lu_non_invertible() 66 m2 = MatrixType::Random(cols,cols2); in lu_non_invertible() 68 m2 = MatrixType::Random(cols,cols2); in lu_non_invertible()
|
/external/valgrind/main/drd/tests/ |
D | omp_matinv.c | 128 const int cols2) in multiply_matrices() argument 135 prod = new_matrix(rows1, cols2); in multiply_matrices() 138 for (j = 0; j < cols2; j++) in multiply_matrices() 140 prod[i * cols2 + j] = 0; in multiply_matrices() 143 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j]; in multiply_matrices()
|
D | matinv.c | 140 const int cols2) in multiply_matrices() argument 147 prod = new_matrix(rows1, cols2); in multiply_matrices() 150 for (j = 0; j < cols2; j++) in multiply_matrices() 152 prod[i * cols2 + j] = 0; in multiply_matrices() 155 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j]; in multiply_matrices()
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | e_select2.test | 228 # te_equals ?SWITCHES? c1 c2 cols1 row1 cols2 row2 233 foreach {c1 c2 cols1 row1 cols2 row2} [lrange $args end-5 end] break 253 set idx2 [if {[string is integer $c2]} { set c2 } else { lsearch $cols2 $c2 }]
|