Searched defs:blockCols (Results 1 - 3 of 3) sorted by relevance

/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)
119 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols) argument
120 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
313 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) argument
314 : m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(blockCols)
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h45 * \param blockCols the number of columns 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
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols);
699 * \param blockCols number of columns in block as specified at run-time
713 Index blockRows, Index blockCols)
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols);
721 Index blockRows, Index blockCols) const
723 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols);
712 block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DBlock.h135 Index blockRows, Index blockCols)
136 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols)
139 && (ColsAtCompileTime==Dynamic || ColsAtCompileTime==blockCols));
141 && a_startCol >= 0 && blockCols >= 0 && a_startCol <= xpr.cols() - blockCols);
158 inline BlockImpl(XprType& xpr, Index a_startRow, Index a_startCol, Index blockRows, Index blockCols) argument
159 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols) {}
202 Index blockRows, Index blockCols)
204 m_blockRows(blockRows), m_blockCols(blockCols)
348 Index blockRows, Index blockCols)
133 Block(XprType& xpr, Index a_startRow, Index a_startCol, Index blockRows, Index blockCols) argument
200 BlockImpl_dense(XprType& xpr, Index a_startRow, Index a_startCol, Index blockRows, Index blockCols) argument
346 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
382 BlockImpl_dense(XprType& xpr, const Scalar* data, Index blockRows, Index blockCols) argument
[all...]

Completed in 133 milliseconds