/external/skia/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++) { 109 for (uint32_t startRow = 0; startRow < height; startRow++) { 110 for (uint32_t endRow = startRow; endRow < height; endRow++) { 113 check_fill(r, colorInfo, startRow, endRow, colorRowBytes, offset [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
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...] |
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...] |
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);
|
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);
|
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...] |
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...] |
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...] |
DefaultFieldMatrixChangingVisitor.java | 49 int startRow, int endRow, int startColumn, int endColumn) {
|
DefaultFieldMatrixPreservingVisitor.java | 49 int startRow, int endRow, int startColumn, int endColumn) {
|
DefaultRealMatrixChangingVisitor.java | 36 int startRow, int endRow, int startColumn, int endColumn) {
|
DefaultRealMatrixPreservingVisitor.java | 36 int startRow, int endRow, int startColumn, int endColumn) {
|
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...] |
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...] |
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417Detector.cpp | 153 int32_t startRow,
160 matrix, height, width, startRow, startColumn, START_PATTERN,
169 startRow = (int32_t)((CBC_ResultPoint*)result->GetAt(4))->GetY();
172 matrix, height, width, startRow, startColumn, STOP_PATTERN,
191 int32_t startRow,
200 for (; startRow < height; startRow += ROW_STEP) {
202 findGuardPattern(matrix, startColumn, startRow, width, FALSE, pattern,
205 while (startRow > 0) {
207 findGuardPattern(matrix, startColumn, --startRow, width, FALSE, [all...] |
BC_PDF417Detector.h | 41 int32_t startRow,
50 int32_t startRow,
|
BC_PDF417BarcodeMatrix.h | 17 void startRow();
|
/frameworks/base/core/java/android/text/ |
PackedIntVector.java | 141 * @param startRow the row at which to begin incrementing. 146 * (startRow < 0 || startRow > size()) or the column 149 public void adjustValuesBelow(int startRow, int column, int delta) { 150 if (((startRow | column) < 0) || (startRow > size()) || 152 throw new IndexOutOfBoundsException(startRow + ", " + column); 155 if (startRow >= mRowGapStart) { 156 startRow += mRowGapLength; 159 moveValueGapTo(column, startRow); [all...] |
/external/webrtc/tools/matlab/ |
rtpAnalyze.m | 179 importfile(filename, startRow, endRow) 185 % STARTROW, ENDROW) Reads data from rows STARTROW through ENDROW of text 198 startRow = 2; 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/plugins/ |
BlockMethods.h | 42 * \param startRow the first row in the block 56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) 58 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); 62 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const 64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); 469 * \param startRow the index of the first row in the block 477 inline RowsBlockXpr middleRows(Index startRow, Index n) 479 return RowsBlockXpr(derived(), startRow, 0, n, cols()); 483 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const 485 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols()) [all...] |
/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;
|
/packages/apps/Terminal/src/com/android/terminal/ |
TerminalCallbacks.java | 20 public int damage(int startRow, int endRow, int startCol, int endCol) {
|
/packages/apps/Gallery/src/com/android/camera/ |
GridViewSpecial.java | 291 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight; 295 // Limit startRow and endRow to the valid range. 297 startRow = Math.max(Math.min(startRow, mRows - 1), 0); 299 mImageBlockManager.setVisibleRows(startRow, endRow); 618 int startRow = 620 int topPos = startRow * mColumns; 660 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight; 664 // Limit startRow and endRow to the valid range. 666 startRow = Math.max(Math.min(startRow, mRows - 1), 0) [all...] |