/external/eigen/Eigen/src/Core/products/ |
TriangularSolverVector.h | 58 Index startRow = IsLower ? pi : pi-actualPanelWidth; 63 &lhs.coeffRef(startRow,startCol), lhsStride, 65 rhs + startRow, 1,
|
/packages/apps/Terminal/src/com/android/terminal/ |
Terminal.java | 58 public void onDamage(int startRow, int endRow, int startCol, int endCol); 78 public int damage(int startRow, int endRow, int startCol, int endCol) { 80 mClient.onDamage(startRow, endRow, startCol, endCol);
|
TerminalView.java | 195 public void onDamage(final int startRow, final int endRow, int startCol, int endCol) {
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
BlockFieldMatrix.java | 679 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow, 684 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); 688 new BlockFieldMatrix<T>(getField(), endRow - startRow + 1, endColumn - startColumn + 1); 691 final int blockStartRow = startRow / BLOCK_SIZE; 692 final int rowsShift = startRow % BLOCK_SIZE; [all...] |
BlockRealMatrix.java | 704 public BlockRealMatrix getSubMatrix(final int startRow, final int endRow, 709 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); 713 new BlockRealMatrix(endRow - startRow + 1, endColumn - startColumn + 1); 716 final int blockStartRow = startRow / BLOCK_SIZE; 717 final int rowsShift = startRow % BLOCK_SIZE; [all...] |
MatrixUtils.java | 556 * @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) { [all...] |
BigMatrix.java | 128 * @param startRow Initial row index 136 BigMatrix getSubMatrix(int startRow, int endRow, int startColumn,
|
BigMatrixImpl.java | 591 * @param startRow Initial row index 599 public BigMatrix getSubMatrix(int startRow, int endRow, 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, [all...] |
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417BarcodeMatrix.cpp | 51 void CBC_BarcodeMatrix::startRow() {
|
/external/eigen/Eigen/src/SparseCore/ |
SparseBlock.h | 57 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) 58 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) 132 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols) 133 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) 318 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols) 319 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) 440 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) 441 : m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(blockCols)
|
/external/eigen/Eigen/src/Core/ |
Block.h | 293 Index startRow() const 339 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol) 340 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr) 348 Index startRow, Index startCol, 350 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),
|
/external/eigen/doc/ |
SparseQuickReference.dox | 189 sm1.block(startRow, startCol, rows, cols); 190 sm1.block(startRow, startCol);
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 718 // @param startRow 721 private static String getData(int col, int startRow) { 722 startRow = startRow % datas.length; 723 for (int i = startRow; i < datas.length; i++) {
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 723 // @param startRow 726 private static String getData(int col, int startRow) { 727 startRow = startRow % datas.length; 728 for (int i = startRow; i < datas.length; i++) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
GridLayoutRule.java | 439 int startRow = grid.getRow(state.bounds.y); 441 int rowSpan = endRow - startRow + 1; 443 Rect cellBounds = grid.getCellBounds(startRow, startColumn, rowSpan, columnSpan); 569 int startRow = grid.getRow(state.bounds.y); 571 int rowSpan = endRow - startRow + 1;
|
/external/skia/src/images/ |
SkMovie_gif.cpp | 136 int startRow) 139 // every 'rowStep'th row, starting with row 'startRow' 140 for (row = startRow; row < copyHeight; row += rowStep) {
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/ |
gpumat.hpp | 214 __host__ GpuMat_<T> GpuMat_<T>::rowRange(int startrow, int endrow) const 216 return GpuMat_(*this, Range(startrow, endrow), Range::all());
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/ |
gpumat.hpp | 117 __host__ GpuMat_ rowRange(int startrow, int endrow) const;
|
/external/opencv3/modules/core/misc/java/src/java/ |
core+Mat.java | 683 // C++: Mat Mat::rowRange(int startrow, int endrow) 686 // javadoc: Mat::rowRange(startrow, endrow) 687 public Mat rowRange(int startrow, int endrow) 690 Mat retVal = new Mat(n_rowRange(nativeObj, startrow, endrow)); 1244 // C++: Mat Mat::rowRange(int startrow, int endrow) 1245 private static native long n_rowRange(long nativeObj, int startrow, int endrow); [all...] |
/frameworks/base/media/java/android/media/ |
ClosedCaptionRenderer.java | 819 int startRow = mRow - windowSize + 1; 820 if (startRow < 1) { 821 startRow = 1; 823 for (i = startRow; i < mRow; i++) { [all...] |
/external/skia/src/codec/ |
SkPngCodec.cpp | 673 const int startRow = this->nextScanline(); 676 for (int y = 0; y < startRow; y++){ 686 for (int y = 0; y < fHeight - startRow - count; y++) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
KeyboardBuilder.java | 308 startRow(row); 423 startRow(row); [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
cuda.inl.hpp | 257 GpuMat GpuMat::rowRange(int startrow, int endrow) const 259 return GpuMat(*this, Range(startrow, endrow), Range::all());
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
SlotView.java | 541 int startRow = position / (mSlotHeight + mSlotGap); 542 int start = Math.max(0, mUnitCount * startRow);
|
/external/libpng/contrib/gregbook/ |
rpng2-x.c | 186 static void rpng2_x_redisplay_image (ulg startcol, ulg startrow, [all...] |