HomeSort by relevance Sort by last modified time
    Searched defs:IsRowMajor (Results 1 - 15 of 15) sorted by null

  /external/eigen/test/
sparse.h 64 enum { IsRowMajor = SparseMatrix<Scalar,Opt2,Index>::IsRowMajor };
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 };
125 if(IsRowMajor)
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 76 enum { IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0 };
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)>
SelfadjointProduct.h 99 enum { IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0 };
SelfadjointMatrixVector.h 42 IsRowMajor = StorageOrder==RowMajor ? 1 : 0,
44 FirstTriangular = IsRowMajor == IsLower
47 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> cj0;
48 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> cj1;
51 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;
52 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;
  /external/eigen/Eigen/src/SparseCore/
CoreIterators.h 32 enum { IsRowMajor = (Derived::Flags&RowMajorBit)==RowMajorBit };
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; }
SparseCwiseBinaryOp.h 144 EIGEN_STRONG_INLINE Index row() const { return Lhs::IsRowMajor ? m_lhsIter.row() : index(); }
145 EIGEN_STRONG_INLINE Index col() const { return Lhs::IsRowMajor ? index() : m_lhsIter.col(); }
222 enum { IsRowMajor = (int(Lhs::Flags)&RowMajorBit)==RowMajorBit };
237 m_rhs.coeff(IsRowMajor?m_outer:m_lhsIter.index(),IsRowMajor?m_lhsIter.index():m_outer)); }
263 enum { IsRowMajor = (int(Rhs::Flags)&RowMajorBit)==RowMajorBit };
277 { return m_functor(m_xpr.lhs().coeff(IsRowMajor?m_outer:m_rhsIter.index(),IsRowMajor?m_rhsIter.index():m_outer), m_rhsIter.value()); }
MappedSparseMatrix.h 36 enum { IsRowMajor = Base::IsRowMajor };
49 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; }
50 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; }
68 const Index outer = IsRowMajor ? row : col;
69 const Index inner = IsRowMajor ? col : row;
87 const Index outer = IsRowMajor ? row : col;
88 const Index inner = IsRowMajor ? col : row;
107 : m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_nnz(nnz), m_outerIndex(outerIndexPtr)
    [all...]
SparseBlock.h 24 IsRowMajor = (int(MatrixType::Flags)&RowMajorBit)==RowMajorBit,
26 RowsAtCompileTime = IsRowMajor ? Size : MatrixType::RowsAtCompileTime,
27 ColsAtCompileTime = IsRowMajor ? MatrixType::ColsAtCompileTime : Size,
41 enum { IsRowMajor = internal::traits<SparseInnerVectorSet>::IsRowMajor };
50 inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
51 inline Index col() const { return IsRowMajor ? this->index() : m_outer; }
61 inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
62 inline Index col() const { return IsRowMajor ? this->index() : m_outer; }
92 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows();
    [all...]
SparseMatrixBase.h 91 IsRowMajor = Flags&RowMajorBit ? 1 : 0,
SparseMatrix.h 94 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; }
173 const Index outer = IsRowMajor ? row : col;
174 const Index inner = IsRowMajor ? col : row;
189 const Index outer = IsRowMajor ? row : col;
190 const Index inner = IsRowMajor ? col : row;
368 return insertBackByOuterInner(IsRowMajor?row:col, IsRowMajor?col:row)
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h 26 enum { IsRowMajor = internal::traits<SparseInnerVectorSet>::IsRowMajor };
35 inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
36 inline Index col() const { return IsRowMajor ? this->index() : m_outer; }
57 if (IsRowMajor != ((OtherDerived::Flags&RowMajorBit)==RowMajorBit))
60 DynamicSparseMatrix<Scalar,IsRowMajor?RowMajorBit:0> aux(other);
68 SparseVector<Scalar,IsRowMajor ? RowMajorBit : 0> aux(other.innerVector(j));
101 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
102 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
  /external/eigen/Eigen/src/Core/
Replicate.h 53 IsRowMajor = MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1 ? 1
56 Flags = (_MatrixTypeNested::Flags & HereditaryBits & ~RowMajorBit) | (IsRowMajor ? RowMajorBit : 0),
Block.h 70 IsRowMajor = (MaxRowsAtCompileTime==1&&MaxColsAtCompileTime!=1) ? 1
73 HasSameStorageOrderAsXprType = (IsRowMajor == XprTypeIsRowMajor),
74 InnerSize = IsRowMajor ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
87 FlagsRowMajorBit = IsRowMajor ? RowMajorBit : 0,
DenseBase.h 157 IsRowMajor = int(Flags) & RowMajorBit, /**< True if this expression has row-major storage order. */
160 : int(IsRowMajor) ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
189 : int(IsRowMajor) ? this->rows() : this->cols();
200 : int(IsRowMajor) ? this->cols() : this->rows();
519 EIGEN_STATIC_ASSERT((EIGEN_IMPLIES(MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1, int(IsRowMajor))
520 && EIGEN_IMPLIES(MaxColsAtCompileTime==1 && MaxRowsAtCompileTime!=1, int(!IsRowMajor))),
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 75 IsRowMajor = Flags & RowMajorBit ? 1 : 0

Completed in 124 milliseconds