Home | History | Annotate | Download | only in linear

Lines Matching refs:startColumn

680                                    final int startColumn, final int endColumn)
684 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
688 new BlockFieldMatrix<T>(getField(), endRow - startRow + 1, endColumn - startColumn + 1);
693 final int blockStartColumn = startColumn / BLOCK_SIZE;
694 final int columnsShift = startColumn % BLOCK_SIZE;
1484 final int startColumn, final int endColumn)
1486 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1487 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1493 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1496 final int qStart = FastMath.max(startColumn, q0);
1514 final int startColumn, final int endColumn)
1516 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1517 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1523 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1526 final int qStart = FastMath.max(startColumn, q0);
1596 final int startColumn, final int endColumn)
1598 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1599 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1604 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1607 final int qStart = FastMath.max(startColumn, q0);
1626 final int startColumn, final int endColumn)
1628 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
1629 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1634 for (int jBlock = startColumn / BLOCK_SIZE; jBlock < 1 + endColumn / BLOCK_SIZE; ++jBlock) {
1637 final int qStart = FastMath.max(startColumn, q0);