Home | History | Annotate | Download | only in Core

Lines Matching defs:startRow

128     inline Block(XprType& xpr, Index startRow, Index startCol)
129 : Impl(xpr, startRow, startCol)
132 eigen_assert(startRow >= 0 && BlockRows >= 0 && startRow + BlockRows <= xpr.rows()
140 Index startRow, Index startCol,
142 : Impl(xpr, startRow, startCol, blockRows, blockCols)
146 eigen_assert(startRow >= 0 && blockRows >= 0 && startRow <= xpr.rows() - blockRows
163 EIGEN_DEVICE_FUNC inline BlockImpl(XprType& xpr, Index startRow, Index startCol) : Impl(xpr, startRow, startCol) {}
165 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
166 : Impl(xpr, startRow, startCol, blockRows, blockCols) {}
203 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol)
204 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol),
212 Index startRow, Index startCol,
214 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol),
307 StorageIndex startRow() const
361 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol)
362 : Base(xpr.data()+xpr.innerStride()*(XprTypeIsRowMajor?startCol:startRow) + xpr.outerStride()*(XprTypeIsRowMajor?startRow:startCol)),
363 m_xpr(xpr), m_startRow(startRow), m_startCol(startCol)
372 Index startRow, Index startCol,
374 : Base(xpr.data()+xpr.innerStride()*(XprTypeIsRowMajor?startCol:startRow) + xpr.outerStride()*(XprTypeIsRowMajor?startRow:startCol), blockRows, blockCols),
375 m_xpr(xpr), m_startRow(startRow), m_startCol(startCol)
406 StorageIndex startRow() const