Lines Matching refs:BlockRows
679 template<int BlockRows, int BlockCols>
680 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) in block()
682 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()
686 template<int BlockRows, int BlockCols>
687 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const in block()
689 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()
711 template<int BlockRows, int BlockCols>
712 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol, in block()
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols); in block()
719 template<int BlockRows, int BlockCols>
720 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol, in block()
723 …return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockC… in block()