/external/eigen/Eigen/src/Core/ |
D | Block.h | 141 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) 166 : Impl(xpr, startRow, startCol, blockRows, blockCols) {} 213 Index blockRows, Index blockCols) 215 m_blockRows(blockRows), m_blockCols(blockCols) 373 Index blockRows, Index blockCols) 374 …tartCol:startRow) + xpr.outerStride()*(XprTypeIsRowMajor?startRow:startCol), blockRows, blockCols), [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseBlock.h | 35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) in BlockImpl() argument 36 …(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols)) in BlockImpl() 69 Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } in blockCols() function 115 …block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) in sparse_matrix_block_impl() argument 116 …(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols)) in sparse_matrix_block_impl() 274 Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } in blockCols() function 298 … BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) in BlockImpl() argument 299 : Base(xpr, startRow, startCol, blockRows, blockCols) in BlockImpl() 317 … BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) in BlockImpl() argument 318 : Base(xpr, startRow, startCol, blockRows, blockCols) in BlockImpl() [all …]
|
/external/eigen/Eigen/src/Core/products/ |
D | Parallelizer.h | 142 Index blockCols = (cols / actual_threads) & ~Index(0x3); in parallelize_gemm() 149 Index c0 = i*blockCols; in parallelize_gemm() 150 Index actualBlockCols = (i+1==actual_threads) ? cols-c0 : blockCols; in parallelize_gemm()
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument 66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block() 71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) … in block() argument 73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block() 816 Index blockRows, Index blockCols) in block() argument 818 …urn typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols); in block() 824 … Index blockRows, Index blockCols) const in block() argument 826 …ypename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols); in block()
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockSparseMatrix.h | 128 return m_spblockmat.blockCols(); 411 MatrixPatternType blockPattern(blockRows(), blockCols()); 654 …t->row() >= 0 && it->row() < this->blockRows() && it->col() >= 0 && it->col() < this->blockCols()); 770 inline Index blockCols() const 809 eigen_assert(bcol < blockCols() && "BLOCK nzblocksFlagCOLUMN OUT OF BOUNDS"); 835 eigen_assert(bcol < blockCols() && "BLOCK COLUMN OUT OF BOUNDS");
|
/external/dng_sdk/source/ |
D | dng_read_image.cpp | 924 uint32 blockCols = ifd.fSubTileBlockCols; in ReorderSubTileBlocks() local 927 uint32 colBlocks = buffer.fArea.W () / blockCols; in ReorderSubTileBlocks() 933 int32 colBlockStep = colStep * blockCols; in ReorderSubTileBlocks() 935 uint32 blockColBytes = blockCols * buffer.fPlanes * buffer.fPixelSize; in ReorderSubTileBlocks()
|
D | dng_image_writer.cpp | 3188 uint32 blockCols = ifd.fSubTileBlockCols; in ReorderSubTileBlocks() local 3191 uint32 colBlocks = buffer.fArea.W () / blockCols; in ReorderSubTileBlocks() 3197 int32 colBlockStep = colStep * blockCols; in ReorderSubTileBlocks() 3199 uint32 blockColBytes = blockCols * buffer.fPlanes * buffer.fPixelSize; in ReorderSubTileBlocks()
|