Home
last modified time | relevance | path

Searched refs:startRow (Results 1 – 25 of 37) sorted by relevance

12

/external/skia/tests/
DSwizzlerTest.cpp20 uint32_t startRow, in check_fill() argument
38 uint8_t* imageStart = imageData + rowBytes * startRow; in check_fill()
39 const SkImageInfo fillInfo = imageInfo.makeWH(imageInfo.width(), endRow - startRow + 1); in check_fill()
44 uint8_t* indexPtr = imageData + startRow * rowBytes; in check_fill()
48 for (uint32_t y = startRow; y <= endRow; y++) { in check_fill()
109 for (uint32_t startRow = 0; startRow < height; startRow++) { in DEF_TEST() local
110 for (uint32_t endRow = startRow; endRow < height; endRow++) { in DEF_TEST()
113 check_fill(r, colorInfo, startRow, endRow, colorRowBytes, offset, in DEF_TEST()
115 check_fill(r, indexInfo, startRow, endRow, indexRowBytes, offset, in DEF_TEST()
117 check_fill(r, grayInfo, startRow, endRow, grayRowBytes, offset, in DEF_TEST()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DAbstractRealMatrix.java209 final int startRow, final int endRow, in getNorm() argument
242 final int startRow, final int endRow, in getFrobeniusNorm() argument
261 public RealMatrix getSubMatrix(final int startRow, final int endRow,
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,
310 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
311 final int rowsCount = endRow + 1 - startRow;
[all …]
DAbstractFieldMatrix.java287 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow, in getSubMatrix() argument
291 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); in getSubMatrix()
294 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1); in getSubMatrix()
295 for (int i = startRow; i <= endRow; ++i) { in getSubMatrix()
297 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j)); in getSubMatrix()
330 public void copySubMatrix(final int startRow, final int endRow, in copySubMatrix() argument
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); in copySubMatrix()
337 final int rowsCount = endRow + 1 - startRow; in copySubMatrix()
350 private int startRow; in copySubMatrix()
358 final int startRow, final int endRow, in copySubMatrix()
[all …]
DRealMatrix.java140 RealMatrix getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) in getSubMatrix() argument
169 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, in copySubMatrix() argument
598 int startRow, int endRow, int startColumn, int endColumn) in walkInRowOrder() argument
628 int startRow, int endRow, int startColumn, int endColumn) in walkInRowOrder() argument
706 int startRow, int endRow, int startColumn, int endColumn) in walkInColumnOrder() argument
736 int startRow, int endRow, int startColumn, int endColumn) in walkInColumnOrder() argument
811 int startRow, int endRow, int startColumn, int endColumn) in walkInOptimizedOrder() argument
840 int startRow, int endRow, int startColumn, int endColumn) in walkInOptimizedOrder() argument
DFieldMatrix.java133 FieldMatrix<T> getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) in getSubMatrix() argument
162 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, in copySubMatrix() argument
553 int startRow, int endRow, int startColumn, int endColumn) in walkInRowOrder() argument
583 int startRow, int endRow, int startColumn, int endColumn) in walkInRowOrder() argument
661 int startRow, int endRow, int startColumn, int endColumn) in walkInColumnOrder() argument
691 int startRow, int endRow, int startColumn, int endColumn) in walkInColumnOrder() argument
766 int startRow, int endRow, int startColumn, int endColumn) in walkInOptimizedOrder() argument
795 int startRow, int endRow, int startColumn, int endColumn) in walkInOptimizedOrder() argument
DArray2DRowRealMatrix.java493 final int startRow, final int endRow, in walkInRowOrder() argument
496 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in walkInRowOrder()
498 startRow, endRow, startColumn, endColumn); in walkInRowOrder() local
499 for (int i = startRow; i <= endRow; ++i) { in walkInRowOrder()
511 final int startRow, final int endRow, in walkInRowOrder() argument
514 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in walkInRowOrder()
516 startRow, endRow, startColumn, endColumn); in walkInRowOrder() local
517 for (int i = startRow; i <= endRow; ++i) { in walkInRowOrder()
560 final int startRow, final int endRow, in walkInColumnOrder() argument
563 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in walkInColumnOrder()
[all …]
DRealMatrixImpl.java501 final int startRow, final int endRow, in walkInRowOrder() argument
504 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in walkInRowOrder()
506 startRow, endRow, startColumn, endColumn); in walkInRowOrder() local
507 for (int i = startRow; i <= endRow; ++i) { in walkInRowOrder()
519 final int startRow, final int endRow, in walkInRowOrder() argument
522 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in walkInRowOrder()
524 startRow, endRow, startColumn, endColumn); in walkInRowOrder() local
525 for (int i = startRow; i <= endRow; ++i) { in walkInRowOrder()
568 final int startRow, final int endRow, in walkInColumnOrder() argument
571 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in walkInColumnOrder()
[all …]
DArray2DRowFieldMatrix.java485 final int startRow, final int endRow, in walkInRowOrder() argument
488 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); in walkInRowOrder()
490 startRow, endRow, startColumn, endColumn); in walkInRowOrder() local
491 for (int i = startRow; i <= endRow; ++i) { in walkInRowOrder()
503 final int startRow, final int endRow, in walkInRowOrder() argument
506 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); in walkInRowOrder()
508 startRow, endRow, startColumn, endColumn); in walkInRowOrder() local
509 for (int i = startRow; i <= endRow; ++i) { in walkInRowOrder()
552 final int startRow, final int endRow, in walkInColumnOrder() argument
555 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); in walkInColumnOrder()
[all …]
DBlockRealMatrix.java704 public BlockRealMatrix getSubMatrix(final int startRow, final int endRow, in getSubMatrix() argument
709 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in getSubMatrix()
713 new BlockRealMatrix(endRow - startRow + 1, endColumn - startColumn + 1); in getSubMatrix()
716 final int blockStartRow = startRow / BLOCK_SIZE; in getSubMatrix()
717 final int rowsShift = startRow % BLOCK_SIZE; in getSubMatrix()
1503 final int startRow, final int endRow, in walkInRowOrder() argument
1506 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); in walkInRowOrder()
1507 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn); in walkInRowOrder()
1508 for (int iBlock = startRow / BLOCK_SIZE; iBlock < 1 + endRow / BLOCK_SIZE; ++iBlock) { in walkInRowOrder()
1510 final int pStart = FastMath.max(startRow, p0); in walkInRowOrder()
[all …]
DBlockFieldMatrix.java679 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow, in getSubMatrix() argument
684 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); in getSubMatrix()
688 new BlockFieldMatrix<T>(getField(), endRow - startRow + 1, endColumn - startColumn + 1); in getSubMatrix()
691 final int blockStartRow = startRow / BLOCK_SIZE; in getSubMatrix()
692 final int rowsShift = startRow % BLOCK_SIZE; in getSubMatrix()
1483 final int startRow, final int endRow, in walkInRowOrder() argument
1486 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); in walkInRowOrder()
1487 visitor.start(rows, columns, startRow, endRow, startColumn, endColumn); in walkInRowOrder()
1488 for (int iBlock = startRow / BLOCK_SIZE; iBlock < 1 + endRow / BLOCK_SIZE; ++iBlock) { in walkInRowOrder()
1490 final int pStart = FastMath.max(startRow, p0); in walkInRowOrder()
[all …]
DMatrixUtils.java563 final int startRow, final int endRow, in checkSubMatrixIndex() argument
565 checkRowIndex(m, startRow); in checkSubMatrixIndex()
567 if (startRow > endRow) { in checkSubMatrixIndex()
569 startRow, endRow); in checkSubMatrixIndex()
684 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
728 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
DRealMatrixChangingVisitor.java42 int startRow, int endRow, int startColumn, int endColumn); in start() argument
DRealMatrixPreservingVisitor.java42 int startRow, int endRow, int startColumn, int endColumn); in start() argument
DDefaultRealMatrixPreservingVisitor.java36 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
DDefaultRealMatrixChangingVisitor.java36 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
DFieldMatrixPreservingVisitor.java43 int startRow, int endRow, int startColumn, int endColumn); in start() argument
DFieldMatrixChangingVisitor.java43 int startRow, int endRow, int startColumn, int endColumn); in start() argument
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417Detector.cpp153 int32_t startRow, in findVertices() argument
160 matrix, height, width, startRow, startColumn, START_PATTERN, in findVertices()
169 startRow = (int32_t)((CBC_ResultPoint*)result->GetAt(4))->GetY(); in findVertices()
172 matrix, height, width, startRow, startColumn, STOP_PATTERN, in findVertices()
191 int32_t startRow, in findRowsWithPattern() argument
200 for (; startRow < height; startRow += ROW_STEP) { in findRowsWithPattern()
202 findGuardPattern(matrix, startColumn, startRow, width, FALSE, pattern, in findRowsWithPattern()
205 while (startRow > 0) { in findRowsWithPattern()
207 findGuardPattern(matrix, startColumn, --startRow, width, FALSE, in findRowsWithPattern()
213 startRow++; in findRowsWithPattern()
[all …]
DBC_PDF417Detector.h41 int32_t startRow,
50 int32_t startRow,
/external/eigen/Eigen/src/plugins/
DBlockMethods.h56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument
58 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
62 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
477 inline RowsBlockXpr middleRows(Index startRow, Index n) in middleRows() argument
479 return RowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
483 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const in middleRows() argument
485 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
503 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N)
505 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());
[all …]
/external/autotest/frontend/client/src/autotest/common/table/
DTableRenderer.java24 int startRow, int maxRows, boolean renderNull) { in renderRowsAndAppend() argument
27 for (int rowIndex = startRow; rowIndex < startRow + maxRows && rowIndex < rows.length; in renderRowsAndAppend()
/external/webrtc/tools/matlab/
DrtpAnalyze.m179 importfile(filename, startRow, endRow)
198 startRow = 2; variable
220 dataArray = textscan(fileID, formatSpec, endRow(1)-startRow(1)+1, ...
221 'Delimiter', '', 'WhiteSpace', '', 'HeaderLines', startRow(1)-1, ...
223 for block=2:length(startRow)
226 endRow(block)-startRow(block)+1, 'Delimiter', '', 'WhiteSpace', ...
227 '', 'HeaderLines', startRow(block)-1, 'ReturnOnError', false);
/external/eigen/Eigen/src/Core/products/
DTriangularSolverVector.h58 Index startRow = IsLower ? pi : pi-actualPanelWidth;
63 &lhs.coeffRef(startRow,startCol), lhsStride,
65 rhs + startRow, 1,
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h57 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
58 …: m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRow… in BlockImpl()
132 …inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int block… in BlockImpl() argument
133 …: m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRow… in BlockImpl()
318 …inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int block… in BlockImpl() argument
319 …: m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRow… in BlockImpl()
440 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
441 …: m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(b… in BlockImpl()
/external/eigen/Eigen/src/Core/
DBlock.h293 Index startRow() const
339 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol)
340 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr)
348 Index startRow, Index startCol,
350 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),

12