Searched refs:blockCols (Results 1 - 7 of 7) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DBlock.h141 Index blockRows, Index blockCols)
142 : Impl(xpr, startRow, startCol, blockRows, blockCols)
145 && (ColsAtCompileTime==Dynamic || ColsAtCompileTime==blockCols));
147 && startCol >= 0 && blockCols >= 0 && startCol <= xpr.cols() - blockCols);
165 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
166 : Impl(xpr, startRow, startCol, blockRows, blockCols) {}
213 Index blockRows, Index blockCols)
215 m_blockRows(blockRows), m_blockCols(blockCols)
373 Index blockRows, Index blockCols)
139 Block(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
211 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
371 BlockImpl_dense(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
426 BlockImpl_dense(XprType& xpr, const Scalar* data, Index blockRows, Index blockCols) argument
[all...]
/external/eigen/Eigen/src/Core/products/
H A DParallelizer.h140 Index blockCols = (cols / actual_threads) & ~Index(0x3);
147 Index c0 = i*blockCols;
148 Index actualBlockCols = (i+1==actual_threads) ? cols-c0 : blockCols;
/external/eigen/Eigen/src/SparseCore/
H A DSparseBlock.h35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
36 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
69 Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } function in class:Eigen::BlockImpl
115 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
116 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
274 Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } function in class:Eigen::internal::sparse_matrix_block_impl
298 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
299 : Base(xpr, startRow, startCol, blockRows, blockCols)
317 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
318 : Base(xpr, startRow, startCol, blockRows, blockCols)
397 BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) argument
431 Index blockCols() const { return m_blockCols.value(); } function in class:Eigen::BlockImpl
[all...]
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h50 /// \param blockCols the number of columns in the block
64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols);
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols);
800 /// \param blockCols number of columns in block as specified at run-time
816 Index blockRows, Index blockCols)
818 return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols);
824 Index blockRows, Index blockCols) const
826 return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols);
815 block(Index startRow, Index startCol, Index blockRows, Index blockCols) argument
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DBlockSparseMatrix.h128 return m_spblockmat.blockCols();
411 MatrixPatternType blockPattern(blockRows(), blockCols());
654 eigen_assert(it->row() >= 0 && it->row() < this->blockRows() && it->col() >= 0 && it->col() < this->blockCols());
749 // return blockCols();
770 inline Index blockCols() const function in class:Eigen::BlockSparseMatrix
809 eigen_assert(bcol < blockCols() && "BLOCK nzblocksFlagCOLUMN OUT OF BOUNDS");
835 eigen_assert(bcol < blockCols() && "BLOCK COLUMN OUT OF BOUNDS");
/external/dng_sdk/source/
H A Ddng_read_image.cpp924 uint32 blockCols = ifd.fSubTileBlockCols; local
927 uint32 colBlocks = buffer.fArea.W () / blockCols;
933 int32 colBlockStep = colStep * blockCols;
935 uint32 blockColBytes = blockCols * buffer.fPlanes * buffer.fPixelSize;
H A Ddng_image_writer.cpp3188 uint32 blockCols = ifd.fSubTileBlockCols; local
3191 uint32 colBlocks = buffer.fArea.W () / blockCols;
3197 int32 colBlockStep = colStep * blockCols;
3199 uint32 blockColBytes = blockCols * buffer.fPlanes * buffer.fPixelSize;

Completed in 202 milliseconds