/external/skia/tests/ |
D | SwizzlerTest.cpp | 16 uint32_t startRow, in check_fill() argument 33 uint8_t* imageStart = imageData + rowBytes * startRow; in check_fill() 34 const SkImageInfo fillInfo = imageInfo.makeWH(imageInfo.width(), endRow - startRow + 1); in check_fill() 39 uint8_t* indexPtr = imageData + startRow * rowBytes; in check_fill() 43 for (uint32_t y = startRow; y <= endRow; y++) { in check_fill() 100 for (uint32_t startRow = 0; startRow < height; startRow++) { in DEF_TEST() local 101 for (uint32_t endRow = startRow; endRow < height; endRow++) { in DEF_TEST() 104 check_fill(r, colorInfo, startRow, endRow, colorRowBytes, offset); in DEF_TEST() 105 check_fill(r, grayInfo, startRow, endRow, grayRowBytes, offset); in DEF_TEST() 106 check_fill(r, color565Info, startRow, endRow, color565RowBytes, offset); in DEF_TEST()
|
/external/skqp/tests/ |
D | SwizzlerTest.cpp | 16 uint32_t startRow, in check_fill() argument 33 uint8_t* imageStart = imageData + rowBytes * startRow; in check_fill() 34 const SkImageInfo fillInfo = imageInfo.makeWH(imageInfo.width(), endRow - startRow + 1); in check_fill() 39 uint8_t* indexPtr = imageData + startRow * rowBytes; in check_fill() 43 for (uint32_t y = startRow; y <= endRow; y++) { in check_fill() 100 for (uint32_t startRow = 0; startRow < height; startRow++) { in DEF_TEST() local 101 for (uint32_t endRow = startRow; endRow < height; endRow++) { in DEF_TEST() 104 check_fill(r, colorInfo, startRow, endRow, colorRowBytes, offset); in DEF_TEST() 105 check_fill(r, grayInfo, startRow, endRow, grayRowBytes, offset); in DEF_TEST() 106 check_fill(r, color565Info, startRow, endRow, color565RowBytes, offset); in DEF_TEST()
|
/external/eigen/Eigen/src/Core/ |
D | Block.h | 128 inline Block(XprType& xpr, Index startRow, Index startCol) 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 …GEN_DEVICE_FUNC inline BlockImpl(XprType& xpr, Index startRow, Index startCol) : Impl(xpr, startRo… 165 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) 166 : Impl(xpr, startRow, startCol, blockRows, blockCols) {} 203 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol) [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | AbstractRealMatrix.java | 209 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 …]
|
D | AbstractFieldMatrix.java | 287 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 …]
|
D | RealMatrix.java | 140 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
|
D | Array2DRowRealMatrix.java | 493 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 …]
|
D | RealMatrixImpl.java | 501 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 …]
|
D | FieldMatrix.java | 133 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
|
D | Array2DRowFieldMatrix.java | 485 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 …]
|
D | BlockRealMatrix.java | 704 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 …]
|
D | BlockFieldMatrix.java | 679 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 …]
|
D | MatrixUtils.java | 563 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
|
D | BigMatrixImpl.java | 599 public BigMatrix getSubMatrix(int startRow, int endRow, in getSubMatrix() argument 603 MatrixUtils.checkRowIndex(this, startRow); in getSubMatrix() 605 if (startRow > endRow) { in getSubMatrix() 607 startRow, endRow); in getSubMatrix() 618 new BigDecimal[endRow - startRow + 1][endColumn - startColumn + 1]; in getSubMatrix() 619 for (int i = startRow; i <= endRow; i++) { in getSubMatrix() 621 subMatrixData[i - startRow], 0, in getSubMatrix()
|
D | RealMatrixChangingVisitor.java | 42 int startRow, int endRow, int startColumn, int endColumn); in start() argument
|
D | RealMatrixPreservingVisitor.java | 42 int startRow, int endRow, int startColumn, int endColumn); in start() argument
|
D | DefaultRealMatrixPreservingVisitor.java | 36 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
|
D | DefaultRealMatrixChangingVisitor.java | 36 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument 66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block() 71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) … in block() argument 73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block() 545 inline RowsBlockXpr middleRows(Index startRow, Index n) in middleRows() argument 547 return RowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows() 552 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const in middleRows() argument 554 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows() 575 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N) 577 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols()); [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseBlock.h | 35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) in BlockImpl() argument 36 …: m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(conver… in BlockImpl() 66 Index startRow() const { return IsRowMajor ? m_outerStart : 0; } in startRow() function 115 …inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index block… in sparse_matrix_block_impl() argument 116 …: m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(conver… in sparse_matrix_block_impl() 271 Index startRow() const { return IsRowMajor ? m_outerStart : 0; } in startRow() function 298 …inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blo… in BlockImpl() argument 299 : Base(xpr, startRow, startCol, blockRows, blockCols) in BlockImpl() 317 …inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blo… in BlockImpl() argument 318 : Base(xpr, startRow, startCol, blockRows, blockCols) in BlockImpl() [all …]
|
/external/autotest/frontend/client/src/autotest/common/table/ |
D | TableRenderer.java | 24 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/ |
D | rtpAnalyze.m | 179 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/unsupported/Eigen/src/SparseExtra/ |
D | BlockSparseMatrix.h | 183 Index startRow = m_spblockmat.blockRowsIndex(bi); 184 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow; 185 return m_vec.middleRows(startRow, rowSize); 189 Index startRow = m_spblockmat.blockRowsIndex(bi); 190 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow; 191 return m_vec.block(startRow, j, rowSize, 1); 223 Index startRow = m_spblockmat.blockRowsIndex(bi); 224 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow; 225 return m_vec.middleRows(startRow, rowSize); 229 Index startRow = m_spblockmat.blockRowsIndex(bi); [all …]
|
/external/eigen/Eigen/src/Core/products/ |
D | TriangularSolverVector.h | 62 Index startRow = IsLower ? pi : pi-actualPanelWidth; 67 LhsMapper(&lhs.coeffRef(startRow,startCol), lhsStride), 69 rhs + startRow, 1,
|
/external/eigen/unsupported/Eigen/src/Splines/ |
D | SplineFitting.h | 355 DenseIndex startRow; in InterpolateWithDerivatives() local 366 startRow = 2; in InterpolateWithDerivatives() 371 startRow = 1; in InterpolateWithDerivatives() 382 DenseIndex row = startRow; in InterpolateWithDerivatives()
|