/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | AbstractRealMatrix.java | 199 private double endRow; in getNorm() 209 final int startRow, final int endRow, in getNorm() argument 211 this.endRow = endRow; in getNorm() 219 if (row == endRow) { in getNorm() 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) { 304 public void copySubMatrix(final int startRow, final int endRow, [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 | 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() 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() 358 final int startRow, final int endRow, in copySubMatrix() 370 }, startRow, endRow, startColumn, endColumn); in copySubMatrix() 809 final int startRow, final int endRow, in walkInRowOrder() argument [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 | 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 | 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() 843 final int endRow = row + subMatrix.length - 1; in setSubMatrix() local 845 MatrixUtils.checkSubMatrixIndex(this, row, endRow, column, endColumn); in setSubMatrix() 856 final int blockEndRow = (endRow + BLOCK_SIZE) / BLOCK_SIZE; in setSubMatrix() 865 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight); in setSubMatrix() 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() [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() 817 final int endRow = row + subMatrix.length - 1; in setSubMatrix() local 819 checkSubMatrixIndex(row, endRow, column, endColumn); in setSubMatrix() 830 final int blockEndRow = (endRow + BLOCK_SIZE) / BLOCK_SIZE; in setSubMatrix() 839 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight); in setSubMatrix() 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() [all …]
|
D | MatrixUtils.java | 563 final int startRow, final int endRow, in checkSubMatrixIndex() argument 566 checkRowIndex(m, endRow); 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 | 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
|
D | FieldMatrixPreservingVisitor.java | 43 int startRow, int endRow, int startColumn, int endColumn); in start() argument
|
D | FieldMatrixChangingVisitor.java | 43 int startRow, int endRow, int startColumn, int endColumn); in start() argument
|
D | DefaultFieldMatrixPreservingVisitor.java | 49 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
|
D | DefaultFieldMatrixChangingVisitor.java | 49 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 604 MatrixUtils.checkRowIndex(this, endRow); 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()
|
D | BigMatrix.java | 136 BigMatrix getSubMatrix(int startRow, int endRow, int startColumn, in getSubMatrix() argument
|
/external/skia/tests/ |
D | SwizzlerTest.cpp | 21 uint32_t endRow, in check_fill() argument 39 const SkImageInfo fillInfo = imageInfo.makeWH(imageInfo.width(), endRow - startRow + 1); in check_fill() 48 for (uint32_t y = startRow; y <= endRow; y++) { in check_fill() 106 for (uint32_t endRow = startRow; endRow < height; endRow++) { in DEF_TEST() local 109 check_fill(r, colorInfo, startRow, endRow, colorRowBytes, offset, in DEF_TEST() 111 check_fill(r, grayInfo, startRow, endRow, grayRowBytes, offset, in DEF_TEST() 113 check_fill(r, color565Info, startRow, endRow, color565RowBytes, offset, in DEF_TEST()
|
/external/webrtc/tools/matlab/ |
D | rtpAnalyze.m | 179 importfile(filename, startRow, endRow) 199 endRow = inf; variable 220 dataArray = textscan(fileID, formatSpec, endRow(1)-startRow(1)+1, ... 226 endRow(block)-startRow(block)+1, 'Delimiter', '', 'WhiteSpace', ...
|
/external/skia/src/gpu/ |
D | GrDistanceFieldGenFromVector.cpp | 656 int endRow = SkScalarCeilToInt(segBB.bottom()); in calculate_distance_field_data() local 661 SkASSERT((endRow <= height) && "EndRow > height!"); in calculate_distance_field_data() 667 endRow = SkTMin(endRow, height); in calculate_distance_field_data() 669 for (int row = startRow; row < endRow; ++row) { in calculate_distance_field_data()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
D | AdamsMoultonIntegrator.java | 372 int startRow, int endRow, int startColumn, int endColumn) { in start() argument
|
/external/ImageMagick/MagickCore/ |
D | accelerate-kernels-private.h | 2945 int endRow = (get_group_id(1) + 1) * get_local_size(1) + radius; 2947 while (row < endRow) {
|