Searched refs:startRow (Results 1 - 25 of 50) sorted by relevance

12

/external/skia/tests/
H A DSwizzlerTest.cpp21 uint32_t startRow,
39 uint8_t* imageStart = imageData + rowBytes * startRow;
40 const SkImageInfo fillInfo = imageInfo.makeWH(imageInfo.width(), endRow - startRow + 1);
45 uint8_t* indexPtr = imageData + startRow * rowBytes;
49 for (uint32_t y = startRow; y <= endRow; y++) {
106 for (uint32_t startRow = 0; startRow < height; startRow++) {
107 for (uint32_t endRow = startRow; endRow < height; endRow++) {
110 check_fill(r, colorInfo, startRow, endRo
19 check_fill(skiatest::Reporter* r, const SkImageInfo& imageInfo, uint32_t startRow, uint32_t endRow, size_t rowBytes, uint32_t offset, uint32_t colorOrIndex) argument
[all...]
/external/skqp/tests/
H A DSwizzlerTest.cpp20 uint32_t startRow,
38 uint8_t* imageStart = imageData + rowBytes * startRow;
39 const SkImageInfo fillInfo = imageInfo.makeWH(imageInfo.width(), endRow - startRow + 1);
44 uint8_t* indexPtr = imageData + startRow * rowBytes;
48 for (uint32_t y = startRow; y <= endRow; y++) {
105 for (uint32_t startRow = 0; startRow < height; startRow++) {
106 for (uint32_t endRow = startRow; endRow < height; endRow++) {
109 check_fill(r, colorInfo, startRow, endRo
18 check_fill(skiatest::Reporter* r, const SkImageInfo& imageInfo, uint32_t startRow, uint32_t endRow, size_t rowBytes, uint32_t offset, uint32_t colorOrIndex) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DDefaultRealMatrixChangingVisitor.java36 int startRow, int endRow, int startColumn, int endColumn) {
35 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DDefaultRealMatrixPreservingVisitor.java36 int startRow, int endRow, int startColumn, int endColumn) {
35 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DRealMatrixChangingVisitor.java36 * @param startRow Initial row index
42 int startRow, int endRow, int startColumn, int endColumn);
41 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DRealMatrixPreservingVisitor.java36 * @param startRow Initial row index
42 int startRow, int endRow, int startColumn, int endColumn);
41 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DRealMatrix.java132 * @param startRow Initial row index
140 RealMatrix getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) argument
160 * @param startRow Initial row index
169 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, argument
577 * @param startRow Initial row index
598 int startRow, int endRow, int startColumn, int endColumn)
607 * @param startRow Initial row index
628 int startRow, int endRow, int startColumn, int endColumn)
685 * @param startRow Initial row index
706 int startRow, in
597 walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
627 walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
705 walkInColumnOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
735 walkInColumnOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
810 walkInOptimizedOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
839 walkInOptimizedOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
[all...]
H A DFieldMatrixChangingVisitor.java37 * @param startRow Initial row index
43 int startRow, int endRow, int startColumn, int endColumn);
42 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DFieldMatrixPreservingVisitor.java37 * @param startRow Initial row index
43 int startRow, int endRow, int startColumn, int endColumn);
42 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DAbstractFieldMatrix.java287 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow, argument
291 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
294 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
295 for (int i = startRow; i <= endRow; ++i) {
297 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
330 public void copySubMatrix(final int startRow, final int endRow, argument
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
337 final int rowsCount = endRow + 1 - startRow;
350 private int startRow;
358 final int startRow, fina
808 walkInRowOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
826 walkInRowOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
872 walkInColumnOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
890 walkInColumnOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
918 walkInOptimizedOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
926 walkInOptimizedOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1052 checkSubMatrixIndex(final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DAbstractRealMatrix.java209 final int startRow, final int endRow,
242 final int startRow, final int endRow,
261 public RealMatrix getSubMatrix(final int startRow, final int endRow, argument
265 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
268 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
269 for (int i = startRow; i <= endRow; ++i) {
271 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
304 public void copySubMatrix(final int startRow, final int endRow, argument
310 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
311 final int rowsCount = endRow + 1 - startRow;
811 walkInRowOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
830 walkInRowOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
877 walkInColumnOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
896 walkInColumnOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
924 walkInOptimizedOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
932 walkInOptimizedOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DArray2DRowRealMatrix.java493 final int startRow, final int endRow,
496 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
498 startRow, endRow, startColumn, endColumn);
499 for (int i = startRow; i <= endRow; ++i) {
511 final int startRow, final int endRow,
514 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
516 startRow, endRow, startColumn, endColumn);
517 for (int i = startRow; i <= endRow; ++i) {
560 final int startRow, final int endRow,
563 MatrixUtils.checkSubMatrixIndex(this, startRow, endRo
492 walkInRowOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
510 walkInRowOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
559 walkInColumnOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
577 walkInColumnOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DDefaultFieldMatrixChangingVisitor.java49 int startRow, int endRow, int startColumn, int endColumn) {
48 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DDefaultFieldMatrixPreservingVisitor.java49 int startRow, int endRow, int startColumn, int endColumn) {
48 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DRealMatrixImpl.java501 final int startRow, final int endRow,
504 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
506 startRow, endRow, startColumn, endColumn);
507 for (int i = startRow; i <= endRow; ++i) {
519 final int startRow, final int endRow,
522 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
524 startRow, endRow, startColumn, endColumn);
525 for (int i = startRow; i <= endRow; ++i) {
568 final int startRow, final int endRow,
571 MatrixUtils.checkSubMatrixIndex(this, startRow, endRo
500 walkInRowOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
518 walkInRowOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
567 walkInColumnOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
585 walkInColumnOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DFieldMatrix.java125 * @param startRow Initial row index
133 FieldMatrix<T> getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) argument
153 * @param startRow Initial row index
162 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, argument
532 * @param startRow Initial row index
553 int startRow, int endRow, int startColumn, int endColumn)
562 * @param startRow Initial row index
583 int startRow, int endRow, int startColumn, int endColumn)
640 * @param startRow Initial row index
661 int startRow, in
552 walkInRowOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
582 walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
660 walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
690 walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
765 walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
794 walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
[all...]
H A DArray2DRowFieldMatrix.java485 final int startRow, final int endRow,
488 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
490 startRow, endRow, startColumn, endColumn);
491 for (int i = startRow; i <= endRow; ++i) {
503 final int startRow, final int endRow,
506 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
508 startRow, endRow, startColumn, endColumn);
509 for (int i = startRow; i <= endRow; ++i) {
552 final int startRow, final int endRow,
555 checkSubMatrixIndex(startRow, endRo
484 walkInRowOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
502 walkInRowOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
551 walkInColumnOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
569 walkInColumnOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DBigMatrix.java128 * @param startRow Initial row index
136 BigMatrix getSubMatrix(int startRow, int endRow, int startColumn, argument
H A DBlockFieldMatrix.java679 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow, argument
684 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
688 new BlockFieldMatrix<T>(getField(), endRow - startRow + 1, endColumn - startColumn + 1);
691 final int blockStartRow = startRow / BLOCK_SIZE;
692 final int rowsShift = startRow % BLOCK_SIZE;
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) {
1490 final int pStart = FastMath.max(startRow, p
1482 walkInRowOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1512 walkInRowOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1594 walkInOptimizedOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1624 walkInOptimizedOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DBlockRealMatrix.java704 public BlockRealMatrix getSubMatrix(final int startRow, final int endRow, argument
709 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
713 new BlockRealMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
716 final int blockStartRow = startRow / BLOCK_SIZE;
717 final int rowsShift = startRow % BLOCK_SIZE;
1503 final int startRow, final int endRow,
1506 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
1507 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn);
1508 for (int iBlock = startRow / BLOCK_SIZE; iBlock < 1 + endRow / BLOCK_SIZE; ++iBlock) {
1510 final int pStart = FastMath.max(startRow, p
1502 walkInRowOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1532 walkInRowOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1614 walkInOptimizedOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1644 walkInOptimizedOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DBlock.h128 inline Block(XprType& xpr, Index startRow, Index startCol) argument
129 : Impl(xpr, startRow, startCol)
132 eigen_assert(startRow >= 0 && BlockRows >= 0 && startRow + BlockRows <= xpr.rows()
140 Index startRow, Index startCol,
142 : Impl(xpr, startRow, startCol, blockRows, blockCols)
146 eigen_assert(startRow >= 0 && blockRows >= 0 && startRow <= xpr.rows() - blockRows
163 EIGEN_DEVICE_FUNC inline BlockImpl(XprType& xpr, Index startRow, Index startCol) : Impl(xpr, startRow, startCo argument
139 Block(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
165 BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
203 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol) argument
211 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
307 StorageIndex startRow() const function in class:Eigen::internal::BlockImpl_dense
361 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol) argument
371 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
406 StorageIndex startRow() const function in class:Eigen::internal::BlockImpl_dense
[all...]
/external/autotest/frontend/client/src/autotest/common/table/
H A DTableRenderer.java24 int startRow, int maxRows, boolean renderNull) {
27 for (int rowIndex = startRow; rowIndex < startRow + maxRows && rowIndex < rows.length;
23 renderRowsAndAppend(HTMLTable tableObject, CellInfo[][] rows, int startRow, int maxRows, boolean renderNull) argument
/external/pdfium/fxbarcode/pdf417/
H A DBC_PDF417BarcodeMatrix.h26 void startRow();
/external/eigen/Eigen/src/SparseCore/
H A DSparseBlock.h35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
36 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
66 Index startRow() const { return IsRowMajor ? m_outerStart : 0; } function in class:Eigen::BlockImpl
115 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
116 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
271 Index startRow() const { return IsRowMajor ? m_outerStart : 0; } function in class:Eigen::internal::sparse_matrix_block_impl
298 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
299 : Base(xpr, startRow, startCol, blockRows, blockCols)
317 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
318 : Base(xpr, startRow, startCo
397 BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
428 Index startRow() const { return m_startRow.value(); } function in class:Eigen::BlockImpl
[all...]
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h47 /// \param startRow the first row in the block
64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols);
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) const argument
73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols);
534 /// \param startRow the index of the first row in the block
545 inline RowsBlockXpr middleRows(Index startRow, Index n) argument
547 return RowsBlockXpr(derived(), startRow, 0, n, cols());
552 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const argument
554 return ConstRowsBlockXpr(derived(), startRow,
575 middleRows(Index startRow, Index n = N) argument
583 middleRows(Index startRow, Index n = N) const argument
780 block(Index startRow, Index startCol) argument
788 block(Index startRow, Index startCol) const argument
815 block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
823 block(Index startRow, Index startCol, Index blockRows, Index blockCols) const argument
[all...]

Completed in 359 milliseconds

12