Home
last modified time | relevance | path

Searched refs:blockCols (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/Core/
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 …nline BlockImpl(XprType& xpr, Index a_startRow, Index a_startCol, Index blockRows, Index blockCols)
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)
349 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),
[all …]
/external/eigen/Eigen/src/Core/products/
DParallelizer.h128 Index blockCols = (cols / threads) & ~Index(0x3); in parallelize_gemm()
139 Index c0 = i*blockCols; in parallelize_gemm()
140 Index actualBlockCols = (i+1==threads) ? cols-c0 : blockCols; in parallelize_gemm()
/external/eigen/Eigen/src/plugins/
DBlockMethods.h56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument
58 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
62 … Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const in block() argument
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
713 Index blockRows, Index blockCols) in block() argument
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols); in block()
721 … Index blockRows, Index blockCols) const in block() argument
723 …rn Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols); in block()
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h57 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
58 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl()
122 …ne BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
123 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl()
293 …ne BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
294 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl()
403 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
404 …ix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(blockCols) in BlockImpl()