Home | History | Annotate | Download | only in linear

Lines Matching defs:endRow

679     public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow,
684 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
688 new BlockFieldMatrix<T>(getField(), endRow - startRow + 1, endColumn - startColumn + 1);
817 final int endRow = row + subMatrix.length - 1;
819 checkSubMatrixIndex(row, endRow, column, endColumn);
830 final int blockEndRow = (endRow + BLOCK_SIZE) / BLOCK_SIZE;
839 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight);
1483 final int startRow, final int endRow,
1486 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1487 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1488 for (int iBlock = startRow / BLOCK_SIZE; iBlock < 1 + endRow / BLOCK_SIZE; ++iBlock) {
1491 final int pEnd = FastMath.min((iBlock + 1) * BLOCK_SIZE, 1 + endRow);
1513 final int startRow, final int endRow,
1516 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1517 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1518 for (int iBlock = startRow / BLOCK_SIZE; iBlock < 1 + endRow / BLOCK_SIZE; ++iBlock) {
1521 final int pEnd = FastMath.min((iBlock + 1) * BLOCK_SIZE, 1 + endRow);
1595 final int startRow, final int endRow,
1598 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1599 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1600 for (int iBlock = startRow / BLOCK_SIZE; iBlock < 1 + endRow / BLOCK_SIZE; ++iBlock) {
1603 final int pEnd = FastMath.min((iBlock + 1) * BLOCK_SIZE, 1 + endRow);
1625 final int startRow, final int endRow,
1628 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1629 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1630 for (int iBlock = startRow / BLOCK_SIZE; iBlock < 1 + endRow / BLOCK_SIZE; ++iBlock) {
1633 final int pEnd = FastMath.min((iBlock + 1) * BLOCK_SIZE, 1 + endRow);