Home
last modified time | relevance | path

Searched refs:RowMajorBit (Results 1 – 25 of 76) sorted by relevance

1234

/external/eigen/Eigen/src/Core/
DVectorBlock.h51 traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
52 traits<VectorType>::Flags & RowMajorBit ? Size : 1> >
59 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
60 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1>
63 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
64 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1> Base;
66 IsColVector = !(internal::traits<VectorType>::Flags & RowMajorBit)
DSolveTriangular.h72 (int(Lhs::Flags) & RowMajorBit) ? RowMajor : ColMajor>
96 …typedef internal::gemm_blocking_space<(Rhs::Flags&RowMajorBit) ? RowMajor : ColMajor,Scalar,Scalar,
101 …r,Index,Side,Mode,LhsProductTraits::NeedToConjugate,(int(Lhs::Flags) & RowMajorBit) ? RowMajor : C…
102 (Rhs::Flags&RowMajorBit) ? RowMajor : ColMajor>
180 …enum { copy = internal::traits<OtherDerived>::Flags & RowMajorBit && OtherDerived::IsVectorAtComp…
DDiagonalProduct.h28 _StorageOrder = MatrixType::Flags & RowMajorBit ? RowMajor : ColMajor,
69 StorageOrder = Flags & RowMajorBit ? RowMajor : ColMajor
90 …InnerSize = (MatrixType::Flags & RowMajorBit) ? MatrixType::ColsAtCompileTime : MatrixType::RowsAt…
DCwiseBinaryOp.h73 StorageOrdersAgree = (int(Lhs::Flags)&RowMajorBit)==(int(Rhs::Flags)&RowMajorBit),
83 Flags = (Flags0 & ~RowMajorBit) | (LhsFlags & RowMajorBit),
DReplicate.h55 : (MatrixType::Flags & RowMajorBit) ? 1 : 0,
56 …Flags = (_MatrixTypeNested::Flags & HereditaryBits & ~RowMajorBit) | (IsRowMajor ? RowMajorBit : 0…
/external/eigen/Eigen/src/SparseCore/
DSparseMatrixBase.h91 IsRowMajor = Flags&RowMajorBit ? 1 : 0,
105 typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor> PlainObject;
163 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); } in outerSize()
166 Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); } in innerSize()
201 const bool transpose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit); in assign()
202 … const Index outerSize = (int(OtherDerived::Flags) & RowMajorBit) ? other.rows() : other.cols(); in assign()
232 (!((Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit)))) && in assignGeneric()
235 enum { Flip = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit) }; in assignGeneric()
267 if (Flags&RowMajorBit)
302 SparseMatrix<Scalar, RowMajorBit> trans = m;
[all …]
DSparseProduct.h20 LhsRowMajor = internal::traits<Lhs>::Flags & RowMajorBit,
21 RhsRowMajor = internal::traits<Rhs>::Flags & RowMajorBit,
62 EvalToRowMajor = (RhsFlags & LhsFlags & RowMajorBit),
64 RemovedBits = ~(EvalToRowMajor ? 0 : RowMajorBit),
DCoreIterators.h32 enum { IsRowMajor = (Derived::Flags&RowMajorBit)==RowMajorBit };
DSparseCwiseBinaryOp.h62 || ((Lhs::Flags&RowMajorBit) == (Rhs::Flags&RowMajorBit))),
222 enum { IsRowMajor = (int(Lhs::Flags)&RowMajorBit)==RowMajorBit };
263 enum { IsRowMajor = (int(Rhs::Flags)&RowMajorBit)==RowMajorBit };
DSparseSparseProductWithPruning.h77 int LhsStorageOrder = traits<Lhs>::Flags&RowMajorBit,
78 int RhsStorageOrder = traits<Rhs>::Flags&RowMajorBit,
79 int ResStorageOrder = traits<ResultType>::Flags&RowMajorBit>
DSparseDiagonalProduct.h47 Flags = (SparseFlags&RowMajorBit),
71 …: (_LhsNested::Flags&RowMajorBit) ? internal::SDP_IsSparseRowMajor : internal::SDP_IsSparseColMajo…
73 …: (_RhsNested::Flags&RowMajorBit) ? internal::SDP_IsSparseRowMajor : internal::SDP_IsSparseColMajor
DSparseVector.h37 IsColVector = (_Options & RowMajorBit) ? 0 : 1,
43 Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit),
309 const bool needToTranspose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit);
DSparseTriangularView.h27 enum { SkipFirst = ((Mode&Lower) && !(MatrixType::Flags&RowMajorBit))
28 || ((Mode&Upper) && (MatrixType::Flags&RowMajorBit)),
DSparseDenseProduct.h58 Flags = Tr ? RowMajorBit : 0,
141 … int LhsStorageOrder = ((SparseLhsType::Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor,
142 … bool ColPerCol = ((DenseRhsType::Flags&RowMajorBit)==0) || DenseRhsType::ColsAtCompileTime==1>
/external/eigen/test/
Dvectorization_logic.cpp91 …typedef Matrix<Scalar,(Matrix11::Flags&RowMajorBit)?16:4*PacketSize,(Matrix11::Flags&RowMajorBit)?… in run()
92 …typedef Matrix<Scalar,(Matrix11::Flags&RowMajorBit)?16:4*PacketSize,(Matrix11::Flags&RowMajorBit)?… in run()
104 DontAlign|((Matrix1::Flags&RowMajorBit)?RowMajor:ColMajor)> Matrix1u; in run()
108 …(PacketSize==8 ? 4 : PacketSize==4 ? 6 : PacketSize==2 ? ((Matrix11::Flags&RowMajorBit)?2:3) : /*P… in run()
109 …(PacketSize==8 ? 6 : PacketSize==4 ? 2 : PacketSize==2 ? ((Matrix11::Flags&RowMajorBit)?3:2) : /*P… in run()
169 …t_redux(Matrix44().template block<(Matrix1::Flags&RowMajorBit)?4:PacketSize,(Matrix1::Flags&RowMaj… in run()
/external/eigen/unsupported/Eigen/src/SparseExtra/
DBlockOfDynamicSparseMatrix.h57 if (IsRowMajor != ((OtherDerived::Flags&RowMajorBit)==RowMajorBit))
60 DynamicSparseMatrix<Scalar,IsRowMajor?RowMajorBit:0> aux(other);
68 SparseVector<Scalar,IsRowMajor ? RowMajorBit : 0> aux(other.innerVector(j));
/external/eigen/Eigen/src/Core/products/
DSelfadjointProduct.h67 StorageOrder = (internal::traits<MatrixType>::Flags&RowMajorBit) ? RowMajor : ColMajor,
99 enum { IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0 };
102 …Scalar, _ActualOtherType::Flags&RowMajorBit ? RowMajor : ColMajor, OtherBlasTraits::NeedToConjug…
103 …Scalar, _ActualOtherType::Flags&RowMajorBit ? ColMajor : RowMajor, (!OtherBlasTraits::NeedToConjug…
104 MatrixType::Flags&RowMajorBit ? RowMajor : ColMajor, UpLo>
DGeneralMatrixMatrix.h408 …typedef internal::gemm_blocking_space<(Dest::Flags&RowMajorBit) ? RowMajor : ColMajor,LhsScalar,Rh…
415 …LhsScalar, (_ActualLhsType::Flags&RowMajorBit) ? RowMajor : ColMajor, bool(LhsBlasTraits::NeedToCo…
416 …RhsScalar, (_ActualRhsType::Flags&RowMajorBit) ? RowMajor : ColMajor, bool(RhsBlasTraits::NeedToCo…
417 (Dest::Flags&RowMajorBit) ? RowMajor : ColMajor>,
422 …unctor(lhs, rhs, dst, actualAlpha, blocking), this->rows(), this->cols(), Dest::Flags&RowMajorBit);
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineProduct.h43 EvalToRowMajor = (RhsFlags & LhsFlags & RowMajorBit),
46 RemovedBits = ~((EvalToRowMajor ? 0 : RowMajorBit) | (ResultIsSkyline ? 0 : SkylineBit)),
128 LhsIsRowMajor = (_Lhs::Flags & RowMajorBit) == RowMajorBit,
191 LhsIsRowMajor = (_Lhs::Flags & RowMajorBit) == RowMajorBit,
249 int LhsStorageOrder = traits<Lhs>::Flags&RowMajorBit>
DSkylineMatrixBase.h75 IsRowMajor = Flags & RowMajorBit ? 1 : 0
129 return (int(Flags) & RowMajorBit) ? this->rows() : this->cols(); in outerSize()
135 return (int(Flags) & RowMajorBit) ? this->cols() : this->rows(); in innerSize()
/external/eigen/Eigen/src/Core/util/
DConstants.h48 const unsigned int RowMajorBit = 0x1; variable
147 const unsigned int HereditaryBits = RowMajorBit
/external/eigen/debug/msvc/
Deigen_autoexp_part.dat129 ; Check for RowMajorBit
173 ; Check for RowMajorBit
217 ; Check for RowMajorBit
261 ; Check for RowMajorBit
/external/eigen/demos/opengl/
Dgpuhelper.h144 GlMatrixHelper<_Flags&Eigen::RowMajorBit, _Flags>::multMatrix(mat);
160 GlMatrixHelper<(_Flags&Eigen::RowMajorBit)!=0, _Flags>::loadMatrix(mat);
173 GlMatrixHelper<_Flags&Eigen::RowMajorBit,_Flags>::loadMatrix(mat);
/external/eigen/Eigen/src/UmfPackSupport/
DUmfPackSupport.h301 …if( ((MatrixType::Flags&RowMajorBit)==RowMajorBit) || sizeof(typename MatrixType::Index)!=sizeof(i… in grapInput()
382 …eigen_assert((BDerived::Flags&RowMajorBit)==0 && "UmfPackLU backend does not support non col-major… in _solve()
383 …eigen_assert((XDerived::Flags&RowMajorBit)==0 && "UmfPackLU backend does not support non col-major… in _solve()
/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh131 if(Dest::Flags&RowMajorBit) in triassign()
140 if(Dest::Flags&RowMajorBit) in triassign()
149 if(Dest::Flags&RowMajorBit) in triassign()

1234