Searched refs:cols2 (Results 1 - 8 of 8) 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/drd/tests/
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
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
/external/opencv3/modules/core/test/
H A Dtest_dxt.cpp366 int rows2 = (flags & DFT_ROWS) ? rows : rows/2 + 1, cols2 = cols/2 + 1; local
368 CV_Assert( cols2 == mat.cols );
379 row[cols2-1].im = 0;
389 row2[cols2-1].re = row[cols2-1].re;
390 row2[cols2-1].im = -row[cols2-1].im;
404 row[cols2-1].im = 0;
414 row2[cols2-1].re = row[cols2
[all...]
/external/opencv3/modules/imgproc/test/ocl/
H A Dtest_warp.cpp149 float cols2 = cols / 2.0f, rows2 = rows / 2.0f;
151 Point2f dp[] = { Point2f(rng.uniform(0.0f, cols2), rng.uniform(0.0f, rows2)),
152 Point2f(rng.uniform(cols2, cols), rng.uniform(0.0f, rows2)),
153 Point2f(rng.uniform(0.0f, cols2), rng.uniform(rows2, rows)),
154 Point2f(rng.uniform(cols2, cols), rng.uniform(rows2, rows)) };

Completed in 729 milliseconds