HomeSort by relevance Sort by last modified time
    Searched refs:startRow (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/skia/tests/
SwizzlerTest.cpp 21 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, endRow, colorRowBytes, offset
    [all...]
  /external/skqp/tests/
SwizzlerTest.cpp 20 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, endRow, colorRowBytes, offset
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DefaultRealMatrixChangingVisitor.java 36 int startRow, int endRow, int startColumn, int endColumn) {
DefaultRealMatrixPreservingVisitor.java 36 int startRow, int endRow, int startColumn, int endColumn) {
RealMatrixChangingVisitor.java 36 * @param startRow Initial row index
42 int startRow, int endRow, int startColumn, int endColumn);
RealMatrixPreservingVisitor.java 36 * @param startRow Initial row index
42 int startRow, int endRow, int startColumn, int endColumn);
RealMatrix.java 132 * @param startRow Initial row index
140 RealMatrix getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
160 * @param startRow Initial row index
169 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn,
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, int endRow, int startColumn, int endColumn
    [all...]
FieldMatrixChangingVisitor.java 37 * @param startRow Initial row index
43 int startRow, int endRow, int startColumn, int endColumn);
FieldMatrixPreservingVisitor.java 37 * @param startRow Initial row index
43 int startRow, int endRow, int startColumn, int endColumn);
AbstractFieldMatrix.java 287 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow,
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,
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
337 final int rowsCount = endRow + 1 - startRow;
350 private int startRow;
358 final int startRow, final int endRow
    [all...]
AbstractRealMatrix.java 209 final int startRow, final int endRow,
242 final int startRow, final int endRow,
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...]
Array2DRowRealMatrix.java 493 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, endRow, startColumn, endColumn)
    [all...]
DefaultFieldMatrixChangingVisitor.java 49 int startRow, int endRow, int startColumn, int endColumn) {
DefaultFieldMatrixPreservingVisitor.java 49 int startRow, int endRow, int startColumn, int endColumn) {
RealMatrixImpl.java 501 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, endRow, startColumn, endColumn)
    [all...]
FieldMatrix.java 125 * @param startRow Initial row index
133 FieldMatrix<T> getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
153 * @param startRow Initial row index
162 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn,
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, int endRow, int startColumn, int endColumn
    [all...]
Array2DRowFieldMatrix.java 485 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, endRow, startColumn, endColumn)
    [all...]
  /packages/apps/Terminal/src/com/android/terminal/
TerminalCallbacks.java 20 public int damage(int startRow, int endRow, int startCol, int endCol) {
  /external/eigen/Eigen/src/Core/
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 EIGEN_DEVICE_FUNC inline BlockImpl(XprType& xpr, Index startRow, Index startCol) : Impl(xpr, startRow, startCol) {
    [all...]
  /frameworks/base/core/java/android/text/
PackedIntVector.java 145 * @param startRow the row at which to begin incrementing.
150 * (startRow &lt; 0 || startRow > size()) or the column
153 public void adjustValuesBelow(int startRow, int column, int delta) {
154 if (((startRow | column) < 0) || (startRow > size()) ||
156 throw new IndexOutOfBoundsException(startRow + ", " + column);
159 if (startRow >= mRowGapStart) {
160 startRow += mRowGapLength;
163 moveValueGapTo(column, startRow);
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/render/
PdfRenderService.java 213 for (int startRow = mYOffset; startRow < mYOffset + mHeight; startRow +=
215 int stripeRows = Math.min(mRowsPerStripe, (mYOffset + mHeight) - startRow);
216 renderToBitmap(startRow, bitmap);
230 private void renderToBitmap(int startRow, Bitmap bitmap) {
235 matrix.postTranslate(0, 0 - startRow);
  /external/autotest/frontend/client/src/autotest/common/table/
TableRenderer.java 24 int startRow, int maxRows, boolean renderNull) {
27 for (int rowIndex = startRow; rowIndex < startRow + maxRows && rowIndex < rows.length;
  /external/pdfium/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.h 26 void startRow();
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
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; }
115 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
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; }
298 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
299 : Base(xpr, startRow, startCol, blockRows, blockCols)
317 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
318 : Base(xpr, startRow, startCol, blockRows, blockCols
    [all...]
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 47 /// \param startRow the first row in the block
64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols)
66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols);
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
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)
547 return RowsBlockXpr(derived(), startRow, 0, n, cols());
552 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const
554 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols())
    [all...]

Completed in 467 milliseconds

1 2 3