Searched defs:startRow (Results 1 - 25 of 32) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DDefaultFieldMatrixChangingVisitor.java49 int startRow, int endRow, int startColumn, int endColumn) {
48 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DDefaultFieldMatrixPreservingVisitor.java49 int startRow, int endRow, int startColumn, int endColumn) {
48 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DDefaultRealMatrixChangingVisitor.java36 int startRow, int endRow, int startColumn, int endColumn) {
35 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DDefaultRealMatrixPreservingVisitor.java36 int startRow, int endRow, int startColumn, int endColumn) {
35 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DFieldMatrixChangingVisitor.java37 * @param startRow Initial row index
43 int startRow, int endRow, int startColumn, int endColumn);
42 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DFieldMatrixPreservingVisitor.java37 * @param startRow Initial row index
43 int startRow, int endRow, int startColumn, int endColumn);
42 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DRealMatrixChangingVisitor.java36 * @param startRow Initial row index
42 int startRow, int endRow, int startColumn, int endColumn);
41 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DRealMatrixPreservingVisitor.java36 * @param startRow Initial row index
42 int startRow, int endRow, int startColumn, int endColumn);
41 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DArray2DRowFieldMatrix.java485 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, endRo
484 walkInRowOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
502 walkInRowOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
551 walkInColumnOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
569 walkInColumnOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DArray2DRowRealMatrix.java493 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, endRo
492 walkInRowOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
510 walkInRowOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
559 walkInColumnOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
577 walkInColumnOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DBigMatrix.java128 * @param startRow Initial row index
136 BigMatrix getSubMatrix(int startRow, int endRow, int startColumn, argument
H A DFieldMatrix.java125 * @param startRow Initial row index
133 FieldMatrix<T> getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) argument
153 * @param startRow Initial row index
162 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, argument
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, in
552 walkInRowOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
582 walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
660 walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
690 walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
765 walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
794 walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) argument
[all...]
H A DRealMatrixImpl.java501 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, endRo
500 walkInRowOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
518 walkInRowOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
567 walkInColumnOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
585 walkInColumnOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DAbstractFieldMatrix.java287 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow, argument
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, argument
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
337 final int rowsCount = endRow + 1 - startRow;
350 private int startRow;
358 final int startRow, fina
808 walkInRowOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
826 walkInRowOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
872 walkInColumnOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
890 walkInColumnOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
918 walkInOptimizedOrder(final FieldMatrixChangingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
926 walkInOptimizedOrder(final FieldMatrixPreservingVisitor<T> visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
1052 checkSubMatrixIndex(final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DAbstractRealMatrix.java209 final int startRow, final int endRow,
242 final int startRow, final int endRow,
261 public RealMatrix getSubMatrix(final int startRow, final int endRow, argument
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, argument
310 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
311 final int rowsCount = endRow + 1 - startRow;
811 walkInRowOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
830 walkInRowOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
877 walkInColumnOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
896 walkInColumnOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
924 walkInOptimizedOrder(final RealMatrixChangingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
932 walkInOptimizedOrder(final RealMatrixPreservingVisitor visitor, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
[all...]
H A DBigMatrixImpl.java591 * @param startRow Initial row index
599 public BigMatrix getSubMatrix(int startRow, int endRow, argument
603 MatrixUtils.checkRowIndex(this, startRow);
605 if (startRow > endRow) {
607 startRow, endRow);
618 new BigDecimal[endRow - startRow + 1][endColumn - startColumn + 1];
619 for (int i = startRow; i <= endRow; i++) {
621 subMatrixData[i - startRow], 0,
H A DMatrixUtils.java556 * @param startRow Initial row index
563 final int startRow, final int endRow,
565 checkRowIndex(m, startRow);
567 if (startRow > endRow) {
569 startRow, endRow);
684 int startRow, int endRow, int startColumn, int endColumn) {
728 int startRow, int endRow, int startColumn, int endColumn) {
562 checkSubMatrixIndex(final AnyMatrix m, final int startRow, final int endRow, final int startColumn, final int endColumn) argument
683 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
727 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
H A DRealMatrix.java132 * @param startRow Initial row index
140 RealMatrix getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) argument
160 * @param startRow Initial row index
169 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, argument
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, in
597 walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
627 walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
705 walkInColumnOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
735 walkInColumnOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
810 walkInOptimizedOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
839 walkInOptimizedOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) argument
[all...]
/external/eigen/Eigen/src/Core/products/
H A DTriangularSolverVector.h58 Index startRow = IsLower ? pi : pi-actualPanelWidth; local
63 &lhs.coeffRef(startRow,startCol), lhsStride,
65 rhs + startRow, 1,
/external/skia/tests/
H A DSwizzlerTest.cpp17 uint32_t startRow,
36 uint8_t* imageStart = imageData + rowBytes * startRow;
39 SkSwizzler::Fill(imageStart, imageInfo, rowBytes, endRow - startRow + 1, colorOrIndex,
44 uint8_t* indexPtr = imageData + startRow * rowBytes;
47 for (uint32_t y = startRow; y <= endRow; y++) {
110 for (uint32_t startRow = 0; startRow < height; startRow++) {
111 for (uint32_t endRow = startRow; endRow < height; endRow++) {
114 check_fill(r, colorInfo, startRow, endRo
15 check_fill(skiatest::Reporter* r, const SkImageInfo& imageInfo, uint32_t startRow, uint32_t endRow, size_t rowBytes, uint32_t offset, uint32_t colorOrIndex, SkPMColor* colorTable) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DAdamsMoultonIntegrator.java372 int startRow, int endRow, int startColumn, int endColumn) {
371 start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) argument
/external/eigen/Eigen/src/SparseCore/
H A DSparseBlock.h57 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) argument
58 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
122 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols) argument
123 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
293 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols) argument
294 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
403 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) argument
404 : m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(blockCols)
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h42 * \param startRow the first row in the block
56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
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 argument
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) argument
479 return RowsBlockXpr(derived(), startRow, 0, n, cols());
483 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const argument
485 return ConstRowsBlockXpr(derived(), startRow,
503 middleRows(Index startRow, Index n = N) argument
510 middleRows(Index startRow, Index n = N) const argument
680 block(Index startRow, Index startCol) argument
687 block(Index startRow, Index startCol) const argument
712 block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
720 block(Index startRow, Index startCol, Index blockRows, Index blockCols) const argument
[all...]
/external/eigen/Eigen/src/Core/
H A DBlock.h292 Index startRow() const function in class:Eigen::internal::BlockImpl_dense
338 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol) argument
339 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr)
347 Index startRow, Index startCol,
349 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),
346 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
/external/skia/src/images/
H A DSkMovie_gif.cpp134 int startRow)
137 // every 'rowStep'th row, starting with row 'startRow'
138 for (row = startRow; row < copyHeight; row += rowStep) {
131 copyInterlaceGroup(SkBitmap* bm, const unsigned char*& src, const ColorMapObject* cmap, int transparent, int copyWidth, int copyHeight, const GifImageDesc& imageDesc, int rowStep, int startRow) argument

Completed in 987 milliseconds

12