Home
last modified time | relevance | path

Searched refs:BlockRows (Results 1 – 8 of 8) sorted by relevance

/external/eigen/Eigen/src/Core/
DBlock.h49 template<typename XprType, int BlockRows, int BlockCols, bool InnerPanel>
50 struct traits<Block<XprType, BlockRows, BlockCols, InnerPanel> > : traits<XprType>
60 RowsAtCompileTime = MatrixRows == 0 ? 0 : BlockRows,
62 MaxRowsAtCompileTime = BlockRows==0 ? 0
96 template<typename XprType, int BlockRows=Dynamic, int BlockCols=Dynamic, bool InnerPanel = false,
101 template<typename XprType, int BlockRows, int BlockCols, bool InnerPanel, typename StorageKind> cla…
103 template<typename XprType, int BlockRows, int BlockCols, bool InnerPanel> class Block
104 …: public BlockImpl<XprType, BlockRows, BlockCols, InnerPanel, typename internal::traits<XprType>::…
106 …typedef BlockImpl<XprType, BlockRows, BlockCols, InnerPanel, typename internal::traits<XprType>::S…
118 ((BlockRows==1) && (BlockCols==XprType::ColsAtCompileTime) && i<xpr.rows())
[all …]
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h15 template<typename XprType, int BlockRows, int BlockCols>
16 class BlockImpl<XprType,BlockRows,BlockCols,true,Sparse>
17 : public SparseMatrixBase<Block<XprType,BlockRows,BlockCols,true> >
20 typedef Block<XprType, BlockRows, BlockCols, true> BlockType;
24 enum { OuterSize = IsRowMajor ? BlockRows : BlockCols };
90 template<typename _Scalar, int _Options, typename _Index, int BlockRows, int BlockCols>
91 class BlockImpl<SparseMatrix<_Scalar, _Options, _Index>,BlockRows,BlockCols,true,Sparse>
92 …: public SparseMatrixBase<Block<SparseMatrix<_Scalar, _Options, _Index>,BlockRows,BlockCols,true> >
96 typedef Block<SparseMatrixType, BlockRows, BlockCols, true> BlockType;
97 typedef Block<const SparseMatrixType, BlockRows, BlockCols, true> ConstBlockType;
[all …]
/external/eigen/Eigen/src/plugins/
DBlockMethods.h679 template<int BlockRows, int BlockCols>
680 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) in block()
682 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()
686 template<int BlockRows, int BlockCols>
687 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const in block()
689 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()
711 template<int BlockRows, int BlockCols>
712 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol, in block()
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols); in block()
719 template<int BlockRows, int BlockCols>
[all …]
/external/eigen/test/
Dblock.cpp91 BlockRows = 2, in block() enumerator
97 m1.template block<BlockRows,BlockCols>(1,1) *= s1; in block()
99 m1.template block<BlockRows,BlockCols>(1,1)(0, 3) = m1.template block<2,5>(1,1)(1,2); in block()
101 Matrix<Scalar,Dynamic,Dynamic> b = m1.template block<BlockRows,BlockCols>(3,3); in block()
102 VERIFY_IS_EQUAL(b, m1.block(3,3,BlockRows,BlockCols)); in block()
105 m1.template block<BlockRows,Dynamic>(1,1,BlockRows,BlockCols) *= s1; in block()
106 …m1.template block<BlockRows,Dynamic>(1,1,BlockRows,BlockCols)(0,3) = m1.template block<2,5>(1,1)(1… in block()
108 VERIFY_IS_EQUAL(b2, m1.block(3,3,BlockRows,BlockCols)); in block()
/external/eigen/test/eigen2/
Deigen2_submatrices.cpp94 BlockRows = EIGEN_SIZE_MIN_PREFER_FIXED(MatrixType::RowsAtCompileTime,2), in submatrices() enumerator
100 m1.template block<BlockRows,BlockCols>(1,1) *= s1; in submatrices()
102 m1.template block<BlockRows,BlockCols>(1,1)(0, 3) = m1.template block<2,5>(1,1)(1,2); in submatrices()
104 Matrix<Scalar,Dynamic,Dynamic> b = m1.template block<BlockRows,BlockCols>(3,3); in submatrices()
105 VERIFY_IS_APPROX(b, m1.block(3,3,BlockRows,BlockCols)); in submatrices()
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixMatrix.h21 template<int BlockRows> inline
26 for(Index w=0; w<BlockRows; w++) in pack()
30 for(Index k=i; k<i+BlockRows; k++) in pack()
37 for(Index w=h+1; w<BlockRows; w++) in pack()
42 for(Index k=i+BlockRows; k<cols; k++) in pack()
43 for(Index w=0; w<BlockRows; w++) in pack()
/external/eigen/unsupported/Eigen/src/KroneckerProduct/
DKroneckerTensorProduct.h114 const int BlockRows = Rhs::RowsAtCompileTime, in evalTo() local
120 Block<Dest,BlockRows,BlockCols>(dst,i*Br,j*Bc,Br,Bc) = m_A.coeff(i,j) * m_B; in evalTo()
/external/eigen/Eigen/src/Core/util/
DForwardDeclarations.h81 template<typename XprType, int BlockRows=Dynamic, int BlockCols=Dynamic, bool InnerPanel = false> c…