Searched defs:IsRowMajor (Results 1 - 15 of 15) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DCoreIterators.h32 enum { IsRowMajor = (Derived::Flags&RowMajorBit)==RowMajorBit }; enumerator in enum:Eigen::DenseBase::InnerIterator::__anon20517
40 return (IsRowMajor) ? m_expression.coeff(m_outer, m_inner)
47 inline Index row() const { return IsRowMajor ? m_outer : index(); }
48 inline Index col() const { return IsRowMajor ? index() : m_outer; }
H A DReplicate.h53 IsRowMajor = MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1 ? 1 enumerator in enum:Eigen::internal::traits::__anon20687
56 Flags = (_MatrixTypeNested::Flags & HereditaryBits & ~RowMajorBit) | (IsRowMajor ? RowMajorBit : 0),
H A DDenseBase.h167 IsRowMajor = int(Flags) & RowMajorBit, /**< True if this expression has row-major storage order. */ enumerator in enum:Eigen::DenseBase::__anon20523
170 : int(IsRowMajor) ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
199 : int(IsRowMajor) ? this->rows() : this->cols();
210 : int(IsRowMajor) ? this->cols() : this->rows();
507 EIGEN_STATIC_ASSERT((EIGEN_IMPLIES(MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1, int(IsRowMajor))
508 && EIGEN_IMPLIES(MaxColsAtCompileTime==1 && MaxRowsAtCompileTime!=1, int(!IsRowMajor))),
H A DBlock.h69 IsRowMajor = (MaxRowsAtCompileTime==1&&MaxColsAtCompileTime!=1) ? 1 enumerator in enum:Eigen::internal::traits::__anon20512
72 HasSameStorageOrderAsXprType = (IsRowMajor == XprTypeIsRowMajor),
73 InnerSize = IsRowMajor ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
86 FlagsRowMajorBit = IsRowMajor ? RowMajorBit : 0,
H A DGeneralProduct.h260 template<typename T> struct IsRowMajor : internal::conditional<(int(T::Flags)&RowMajorBit), internal::true_type, internal::false_type>::type {}; struct in class:Eigen::GeneralProduct
284 internal::outer_product_selector_run(*this, dest, set(), IsRowMajor<Dest>());
289 internal::outer_product_selector_run(*this, dest, add(), IsRowMajor<Dest>());
294 internal::outer_product_selector_run(*this, dest, sub(), IsRowMajor<Dest>());
299 internal::outer_product_selector_run(*this, dest, adds(alpha), IsRowMajor<Dest>());
/external/eigen/test/
H A Dsparse.h64 enum { IsRowMajor = SparseMatrix<Scalar,Opt2,Index>::IsRowMajor }; enumerator in enum:__anon21057
67 sparseMat.reserve(VectorXi::Constant(IsRowMajor ? refMat.rows() : refMat.cols(), int((1.5*density)*(IsRowMajor?refMat.cols():refMat.rows()))));
75 if(IsRowMajor)
116 enum { IsRowMajor = DynamicSparseMatrix<Scalar,Opt2,Index>::IsRowMajor }; enumerator in enum:__anon21058
125 if(IsRowMajor)
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointProduct.h97 enum { IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0 }; enumerator in enum:Eigen::selfadjoint_product_selector::__anon20780
H A DSelfadjointRank2Update.h76 enum { IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0 }; enumerator in enum:Eigen::__anon20781
79 if (IsRowMajor)
83 typename internal::remove_all<typename internal::conj_expr_if<IsRowMajor ^ UBlasTraits::NeedToConjugate,_ActualUType>::type>::type,
84 typename internal::remove_all<typename internal::conj_expr_if<IsRowMajor ^ VBlasTraits::NeedToConjugate,_ActualVType>::type>::type,
85 (IsRowMajor ? int(UpLo==Upper ? Lower : Upper) : UpLo)>
H A DSelfadjointMatrixVector.h50 IsRowMajor = StorageOrder==RowMajor ? 1 : 0, enumerator in enum:Eigen::internal::__anon20775
52 FirstTriangular = IsRowMajor == IsLower
55 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> cj0;
56 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> cj1;
59 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;
60 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrixBase.h75 IsRowMajor = Flags & RowMajorBit ? 1 : 0 enumerator in enum:Eigen::SkylineMatrixBase::__anon21092
/external/eigen/Eigen/src/SparseCore/
H A DMappedSparseMatrix.h36 enum { IsRowMajor = Base::IsRowMajor }; enumerator in enum:Eigen::MappedSparseMatrix::__anon20959
49 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; }
50 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; }
70 const Index outer = IsRowMajor ? row : col;
71 const Index inner = IsRowMajor ? col : row;
89 const Index outer = IsRowMajor ? row : col;
90 const Index inner = IsRowMajor ? col : row;
109 : m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor
[all...]
H A DSparseBlock.h22 enum { IsRowMajor = internal::traits<BlockType>::IsRowMajor }; enumerator in enum:Eigen::BlockImpl::__anon20960
24 enum { OuterSize = IsRowMajor ? BlockRows : BlockCols };
35 inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
36 inline Index col() const { return IsRowMajor ? this->index() : m_outer; }
47 inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
48 inline Index col() const { return IsRowMajor ? this->index() : m_outer; }
58 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
61 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor
86 enum { IsRowMajor = internal::traits<BlockType>::IsRowMajor }; enumerator in enum:Eigen::BlockImpl::__anon20962
298 enum { IsRowMajor = internal::traits<BlockType>::IsRowMajor }; enumerator in enum:Eigen::BlockImpl::__anon20964
[all...]
H A DSparseCwiseBinaryOp.h145 EIGEN_STRONG_INLINE Index row() const { return Lhs::IsRowMajor ? m_lhsIter.row() : index(); }
146 EIGEN_STRONG_INLINE Index col() const { return Lhs::IsRowMajor ? index() : m_lhsIter.col(); }
223 enum { IsRowMajor = (int(Lhs::Flags)&RowMajorBit)==RowMajorBit }; enumerator in enum:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector::__anon20965
238 m_rhs.coeff(IsRowMajor?m_outer:m_lhsIter.index(),IsRowMajor?m_lhsIter.index():m_outer)); }
264 enum { IsRowMajor = (int(Rhs::Flags)&RowMajorBit)==RowMajorBit }; enumerator in enum:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector::__anon20966
278 { return m_functor(m_xpr.lhs().coeff(IsRowMajor?m_outer:m_rhsIter.index(),IsRowMajor?m_rhsIter.index():m_outer), m_rhsIter.value()); }
H A DSparseMatrixBase.h91 IsRowMajor = Flags&RowMajorBit ? 1 : 0, enumerator in enum:Eigen::SparseMatrixBase::__anon20975
94 : int(IsRowMajor) ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
400 typedef Block<Derived,IsRowMajor?1:Dynamic,IsRowMajor?Dynamic:1,true> InnerVectorReturnType;
401 typedef Block<const Derived,IsRowMajor?1:Dynamic,IsRowMajor?Dynamic:1,true> ConstInnerVectorReturnType;
H A DSparseMatrix.h94 using Base::IsRowMajor;
102 typedef SparseMatrix<Scalar,(Flags&~RowMajorBit)|(IsRowMajor?RowMajorBit:0)> TransposedSparseMatrix;
119 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; }
121 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; }
175 const Index outer = IsRowMajor ? row : col;
176 const Index inner = IsRowMajor ? col : row;
193 const Index outer = IsRowMajor ? row : col;
194 const Index inner = IsRowMajor ? col : row;
376 return insertBackByOuterInner(IsRowMajor?row:col, IsRowMajor
940 enum { IsRowMajor = SparseMatrixType::IsRowMajor }; enumerator in enum:Eigen::internal::__anon20974
[all...]

Completed in 5505 milliseconds