/external/eigen/Eigen/src/Core/ |
D | Block.h | 136 Index blockRows, Index blockCols) 137 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols) 139 eigen_assert((RowsAtCompileTime==Dynamic || RowsAtCompileTime==blockRows) 141 eigen_assert(a_startRow >= 0 && blockRows >= 0 && a_startRow <= xpr.rows() - blockRows 159 …inline BlockImpl(XprType& xpr, Index a_startRow, Index a_startCol, Index blockRows, Index blockCol… 160 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols) {} 203 Index blockRows, Index blockCols) 205 m_blockRows(blockRows), m_blockCols(blockCols) 349 Index blockRows, Index blockCols) 350 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols), [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | BlockRealMatrix.java | 85 private final int blockRows; field in BlockRealMatrix 106 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockRealMatrix() 156 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockRealMatrix() 161 blocks = new double[blockRows * blockColumns][]; in BlockRealMatrix() 168 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in BlockRealMatrix() 211 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in toBlocksLayout() local 225 final double[][] blocks = new double[blockRows * blockColumns][]; in toBlocksLayout() 227 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in toBlocksLayout() 270 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in createBlocksLayout() local 273 final double[][] blocks = new double[blockRows * blockColumns][]; in createBlocksLayout() [all …]
|
D | BlockFieldMatrix.java | 87 private final int blockRows; field in BlockFieldMatrix 109 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockFieldMatrix() 159 blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in BlockFieldMatrix() 164 blocks = buildArray(getField(), blockRows * blockColumns, -1); in BlockFieldMatrix() 171 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in BlockFieldMatrix() 216 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in toBlocksLayout() local 231 final T[][] blocks = buildArray(field, blockRows * blockColumns, -1); in toBlocksLayout() 233 for (int iBlock = 0; iBlock < blockRows; ++iBlock) { in toBlocksLayout() 280 final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; in createBlocksLayout() local 283 final T[][] blocks = buildArray(field, blockRows * blockColumns, -1); in createBlocksLayout() [all …]
|
/external/eigen/Eigen/src/Core/products/ |
D | Parallelizer.h | 137 Index blockRows = (rows / actual_threads) & ~Index(0x7); in parallelize_gemm() 139 Index r0 = i*blockRows; in parallelize_gemm() 140 Index actualBlockRows = (i+1==actual_threads) ? rows-r0 : blockRows; in parallelize_gemm()
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 56 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 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… 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 …return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockC… in block()
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseBlock.h | 57 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() 132 …inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int block… in BlockImpl() argument 133 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl() 318 …inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int block… in BlockImpl() argument 319 …r), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols) in BlockImpl() 440 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument 441 …: m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(b… in BlockImpl()
|
/external/dng_sdk/source/ |
D | dng_read_image.cpp | 923 uint32 blockRows = ifd.fSubTileBlockRows; in ReorderSubTileBlocks() local 926 uint32 rowBlocks = buffer.fArea.H () / blockRows; in ReorderSubTileBlocks() 932 int32 rowBlockStep = rowStep * blockRows; in ReorderSubTileBlocks() 950 for (uint32 blockRow = 0; blockRow < blockRows; blockRow++) in ReorderSubTileBlocks()
|
D | dng_image_writer.cpp | 3187 uint32 blockRows = ifd.fSubTileBlockRows; in ReorderSubTileBlocks() local 3190 uint32 rowBlocks = buffer.fArea.H () / blockRows; in ReorderSubTileBlocks() 3196 int32 rowBlockStep = rowStep * blockRows; in ReorderSubTileBlocks() 3214 for (uint32 blockRow = 0; blockRow < blockRows; blockRow++) in ReorderSubTileBlocks()
|