Lines Matching refs:Index
32 typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3
100 Index rows = mat.rows();
101 Index cols = mat.cols();
111 for (Index k = 0; /* breaks at k==cols-1 below */ ; ++k)
113 Index remainingRows = rows - k;
114 Index remainingCols = cols - k - 1;
155 Index bs,
171 Index brows = A.rows();
172 Index bcols = A.cols();
176 for(Index k = 0; k < bs; ++k)
178 Index remainingRows = brows - k;
179 Index remainingCols = bcols - k - 1;
285 Index maxBlockSize=32,
291 Index rows = A.rows();
292 Index cols = A.cols();
293 Index size = (std::min)(rows, cols);
307 Index blockSize = (std::min)(maxBlockSize,size);
309 Index k = 0;
312 Index bs = (std::min)(size-k,blockSize); // actual size of the block
313 Index brows = rows - k; // rows of the block
314 Index bcols = cols - k; // columns of the block
361 Index rows = matrix.rows();
362 Index cols = matrix.cols();
383 Index rows = matrix.rows();
384 Index cols = matrix.cols();