Home
last modified time | relevance | path

Searched refs:startRow (Results 1 – 7 of 7) sorted by relevance

/external/eigen/Eigen/src/Core/
DBlock.h127 inline Block(XprType& xpr, Index startRow, Index startCol)
128 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol),
132 eigen_assert(startRow >= 0 && BlockRows >= 1 && startRow + BlockRows <= xpr.rows()
139 Index startRow, Index startCol,
141 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol),
146 eigen_assert(startRow >= 0 && blockRows >= 0 && startRow + blockRows <= xpr.rows()
237 Index startRow() const
286 inline Block(XprType& xpr, Index startRow, Index startCol)
287 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr)
289 eigen_assert(startRow >= 0 && BlockRows >= 1 && startRow + BlockRows <= xpr.rows()
[all …]
/external/eigen/Eigen/src/plugins/
DBlockMethods.h54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument
56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument
62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
347 inline RowsBlockXpr middleRows(Index startRow, Index numRows) in middleRows() argument
349 return RowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows()
353 inline ConstRowsBlockXpr middleRows(Index startRow, Index numRows) const in middleRows() argument
355 return ConstRowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows()
369 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow) in middleRows() argument
371 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, N, cols()); in middleRows()
[all …]
/external/eigen/Eigen/src/Core/products/
DTriangularSolverVector.h58 Index startRow = IsLower ? pi : pi-actualPanelWidth;
63 &lhs.coeffRef(startRow,startCol), lhsStride,
65 rhs + startRow, 1,
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
DTestCertUtils.java725 private static String getData(int col, int startRow) { in getData() argument
726 startRow = startRow % datas.length; in getData()
727 for (int i = startRow; i < datas.length; i++) { in getData()
/external/skia/src/images/
DSkMovie_gif.cpp130 int startRow) in copyInterlaceGroup() argument
134 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
/external/chromium_org/third_party/skia/src/images/
DSkMovie_gif.cpp130 int startRow) in copyInterlaceGroup() argument
134 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableSection.cpp1419 unsigned startRow = nextRow > 0 ? nextRow - 1 : 0; in spannedRows() local
1431 return CellSpan(startRow, endRow); in spannedRows()