Home | History | Annotate | Download | only in test

Lines Matching refs:Index

14   typedef typename MatrixType::Index Index;
19 Index rows = _m.rows();
20 Index cols = _m.cols();
21 Index supers = _m.supers();
22 Index subs = _m.subs();
49 Index d = (std::min)(rows,cols);
50 Index a = std::max<Index>(0,cols-d-supers);
51 Index b = std::max<Index>(0,rows-d-subs);
65 typedef BandMatrix<float>::Index Index;
68 Index rows = internal::random<Index>(1,10);
69 Index cols = internal::random<Index>(1,10);
70 Index sups = internal::random<Index>(0,cols-1);
71 Index subs = internal::random<Index>(0,rows-1);