Searched refs:cols2 (Results 1 – 8 of 8) sorted by relevance
/external/eigen/test/ |
D | lu.cpp | 21 Index rows, cols, cols2; in lu_non_invertible() local 33 cols2 = internal::random<int>(2,EIGEN_TEST_MAX_SIZE); in lu_non_invertible() 37 cols2 = cols = MatrixType::ColsAtCompileTime; in lu_non_invertible() 56 MatrixType m1(rows, cols), m3(rows, cols2); in lu_non_invertible() 57 CMatrixType m2(cols, cols2); in lu_non_invertible() 89 m2 = CMatrixType::Random(cols,cols2); in lu_non_invertible() 91 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() 44 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 46 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() 39 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 41 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/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/opencv3/modules/core/test/ |
D | test_dxt.cpp | 366 int rows2 = (flags & DFT_ROWS) ? rows : rows/2 + 1, cols2 = cols/2 + 1; in fixCCS() local 368 CV_Assert( cols2 == mat.cols ); in fixCCS() 379 row[cols2-1].im = 0; in fixCCS() 389 row2[cols2-1].re = row[cols2-1].re; in fixCCS() 390 row2[cols2-1].im = -row[cols2-1].im; in fixCCS() 404 row[cols2-1].im = 0; in fixCCS() 414 row2[cols2-1].re = row[cols2-1].re; in fixCCS() 415 row2[cols2-1].im = -row[cols2-1].im; in fixCCS()
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_warp.cpp | 149 float cols2 = cols / 2.0f, rows2 = rows / 2.0f; in OCL_TEST_P() local 151 Point2f dp[] = { Point2f(rng.uniform(0.0f, cols2), rng.uniform(0.0f, rows2)), in OCL_TEST_P() 152 Point2f(rng.uniform(cols2, cols), rng.uniform(0.0f, rows2)), in OCL_TEST_P() 153 Point2f(rng.uniform(0.0f, cols2), rng.uniform(rows2, rows)), in OCL_TEST_P() 154 Point2f(rng.uniform(cols2, cols), rng.uniform(rows2, rows)) }; in OCL_TEST_P()
|