Lines Matching refs:Index
20 typedef typename MatrixType::Index Index;
21 Index rows = m.rows();
22 Index cols = m.cols();
48 typedef typename MatrixType::Index Index;
49 Index rows = m.rows();
50 Index cols = m.cols();
51 Index diagSize = (std::min)(rows, cols);
71 typedef typename MatrixType::Index Index;
72 Index rows = m.rows();
73 Index cols = m.cols();
83 RhsType rhs = RhsType::Random(rows, internal::random<Index>(1, cols));
127 Index rank = RankAtCompileTime2==Dynamic ? internal::random<Index>(1,cols) : Index(RankAtCompileTime2);
151 Index rows3 = RowsAtCompileTime3==Dynamic ? internal::random<Index>(rank+1,2*cols) : Index(RowsAtCompileTime3);
203 typedef typename MatrixType::Index Index;
204 Index diagSize = (std::min)(m.rows(), m.cols());
218 typedef typename MatrixType::Index Index;
219 Index diagSize = (std::min)(a.rows(), a.cols());
223 for(Index k=0; k<diagSize; ++k)
227 Index n = internal::random<Index>(0,m.size()-1);
228 for(Index i=0; i<n; ++i)
229 m(internal::random<Index>(0,m.rows()-1), internal::random<Index>(0,m.cols()-1)) = Scalar(0);
241 typedef typename MatrixType::Index Index;
242 Index rows = m.rows();
243 Index cols = m.cols();