Home | History | Annotate | Download | only in linear

Lines Matching refs:startColumn

705                                    final int startColumn, final int endColumn)
709 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
713 new BlockRealMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
718 final int blockStartColumn = startColumn / BLOCK_SIZE;
719 final int columnsShift = startColumn % BLOCK_SIZE;
1504 final int startColumn, final int endColumn)
1506 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
1507 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1513 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1516 final int qStart = FastMath.max(startColumn, q0);
1534 final int startColumn, final int endColumn)
1536 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
1537 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1543 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1546 final int qStart = FastMath.max(startColumn, q0);
1616 final int startColumn, final int endColumn)
1618 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
1619 startColumn, endColumn);
1624 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1627 final int qStart = FastMath.max(startColumn, q0);
1646 final int startColumn, final int endColumn)
1648 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
1649 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1654 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1657 final int qStart = FastMath.max(startColumn, q0);