Searched defs:cols2 (Results 1 - 6 of 6) sorted by relevance

/external/eigen/test/eigen2/
H A Deigen2_lu.cpp41 int rows = ei_random<int>(20,200), cols = ei_random<int>(20,200), cols2 = ei_random<int>(20,200); local
44 MatrixType m1(rows, cols), m2(cols, cols2), m3(rows, cols2), k(1,1);
66 m2 = MatrixType::Random(cols,cols2);
68 m2 = MatrixType::Random(cols,cols2);
72 m3 = MatrixType::Random(rows,cols2);
/external/eigen/test/
H A Dlu.cpp21 Index rows, cols, cols2; local
33 cols2 = internal::random<int>(2,EIGEN_TEST_MAX_SIZE);
37 cols2 = cols = MatrixType::ColsAtCompileTime;
56 MatrixType m1(rows, cols), m3(rows, cols2);
57 CMatrixType m2(cols, cols2);
89 m2 = CMatrixType::Random(cols,cols2);
91 m2 = CMatrixType::Random(cols,cols2);
H A Dqr_colpivoting.cpp18 Index rows = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE); local
39 MatrixType m2 = MatrixType::Random(cols,cols2);
41 m2 = MatrixType::Random(cols,cols2);
H A Dqr_fullpivoting.cpp18 Index rows = internal::random<Index>(20,200), cols = internal::random<int>(20,200), cols2 = internal::random<int>(20,200); local
44 MatrixType m2 = MatrixType::Random(cols,cols2);
46 m2 = MatrixType::Random(cols,cols2);
/external/valgrind/main/drd/tests/
H A Domp_matinv.c128 const int cols2)
135 prod = new_matrix(rows1, cols2);
138 for (j = 0; j < cols2; j++)
140 prod[i * cols2 + j] = 0;
143 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];
123 multiply_matrices(const elem_t* const a1, const int rows1, const int cols1, const elem_t* const a2, const int rows2, const int cols2) argument
H A Dmatinv.c140 const int cols2)
147 prod = new_matrix(rows1, cols2);
150 for (j = 0; j < cols2; j++)
152 prod[i * cols2 + j] = 0;
155 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];
135 multiply_matrices(const elem_t* const a1, const int rows1, const int cols1, const elem_t* const a2, const int rows2, const int cols2) argument

Completed in 1378 milliseconds