Searched refs:blockRows (Results 1 - 4 of 4) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DBlock.h135 Index blockRows, Index blockCols)
136 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols)
138 eigen_assert((RowsAtCompileTime==Dynamic || RowsAtCompileTime==blockRows)
140 eigen_assert(a_startRow >= 0 && blockRows >= 0 && a_startRow <= xpr.rows() - blockRows
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, Inde
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...]
/external/eigen/Eigen/src/Core/products/
H A DParallelizer.h129 Index blockRows = (rows / threads) & ~Index(0x7);
136 Index r0 = i*blockRows;
137 Index actualBlockRows = (i+1==threads) ? rows-r0 : blockRows;
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h44 * \param blockRows the number of rows 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 argument
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols);
698 * \param blockRows number of rows in block as specified at run-time
703 * information should not contradict. In other words, \a blockRows should equal \a BlockRows unless
713 Index blockRows, Index blockCols)
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols);
721 Index blockRows, Inde
712 block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
720 block(Index startRow, Index startCol, Index blockRows, Index blockCols) const argument
[all...]
/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)

Completed in 6578 milliseconds