Searched refs:RowMajorBit (Results 1 - 25 of 75) sorted by relevance

123

/external/eigen/Eigen/src/Core/
H A 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)
H A DCoreIterators.h32 enum { IsRowMajor = (Derived::Flags&RowMajorBit)==RowMajorBit };
H A DDiagonalProduct.h28 _StorageOrder = MatrixType::Flags & RowMajorBit ? RowMajor : ColMajor,
69 StorageOrder = int(MatrixType::Flags) & RowMajorBit ? RowMajor : ColMajor
78 StorageOrder = Flags & RowMajorBit ? RowMajor : ColMajor
90 StorageOrder = int(MatrixType::Flags) & RowMajorBit ? RowMajor : ColMajor
107 InnerSize = (MatrixType::Flags & RowMajorBit) ? MatrixType::ColsAtCompileTime : MatrixType::RowsAtCompileTime,
H A DRef.h104 StorageOrderMatch = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime || ((PlainObjectType::Flags&RowMajorBit)==(Derived::Flags&RowMajorBit)),
143 : int(Flags)&RowMajorBit ? this->cols()
176 if(Expression::IsVectorAtCompileTime && (!PlainObjectType::IsVectorAtCompileTime) && ((Expression::Flags&RowMajorBit)!=(PlainObjectType::Flags&RowMajorBit)))
H A DSolveTriangular.h72 (int(Lhs::Flags) & RowMajorBit) ? RowMajor : ColMajor>
96 typedef internal::gemm_blocking_space<(Rhs::Flags&RowMajorBit) ? RowMajor : ColMajor,Scalar,Scalar,
101 triangular_solve_matrix<Scalar,Index,Side,Mode,LhsProductTraits::NeedToConjugate,(int(Lhs::Flags) & RowMajorBit) ? RowMajor : ColMajor,
102 (Rhs::Flags&RowMajorBit) ? RowMajor : ColMajor>
180 enum { copy = internal::traits<OtherDerived>::Flags & RowMajorBit && OtherDerived::IsVectorAtCompileTime };
H A DCwiseBinaryOp.h73 StorageOrdersAgree = (int(Lhs::Flags)&RowMajorBit)==(int(Rhs::Flags)&RowMajorBit),
83 Flags = (Flags0 & ~RowMajorBit) | (LhsFlags & RowMajorBit),
H A DReplicate.h55 : (MatrixType::Flags & RowMajorBit) ? 1 : 0,
56 Flags = (_MatrixTypeNested::Flags & HereditaryBits & ~RowMajorBit) | (IsRowMajor ? RowMajorBit : 0),
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DBlockOfDynamicSparseMatrix.h63 if (IsRowMajor != ((OtherDerived::Flags&RowMajorBit)==RowMajorBit))
66 DynamicSparseMatrix<Scalar,IsRowMajor?RowMajorBit:0> aux(other);
74 SparseVector<Scalar,IsRowMajor ? RowMajorBit : 0> aux(other.innerVector(j));
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h91 IsRowMajor = Flags&RowMajorBit ? 1 : 0,
108 typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor, Index> PlainObject;
166 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); }
169 Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); }
204 const bool transpose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit);
205 const Index outerSize = (int(OtherDerived::Flags) & RowMajorBit) ? other.rows() : other.cols();
233 //const bool transpose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit);
235 (!((Flags & RowMajorBit) !
[all...]
H A DSparseProduct.h21 LhsRowMajor = internal::traits<Lhs>::Flags & RowMajorBit,
22 RhsRowMajor = internal::traits<Rhs>::Flags & RowMajorBit,
63 EvalToRowMajor = (RhsFlags & LhsFlags & RowMajorBit),
65 RemovedBits = ~(EvalToRowMajor ? 0 : RowMajorBit),
H A DSparseTriangularView.h28 enum { SkipFirst = ((Mode&Lower) && !(MatrixType::Flags&RowMajorBit))
29 || ((Mode&Upper) && (MatrixType::Flags&RowMajorBit)),
107 inline Index row() const { return (MatrixType::Flags&RowMajorBit ? Base::outer() : this->index()); }
108 inline Index col() const { return (MatrixType::Flags&RowMajorBit ? this->index() : Base::outer()); }
H A DSparseUtil.h118 enum { _Options = ((traits<T>::Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor };
133 enum { _Options = ((traits<T>::Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor };
H A DSparseCwiseBinaryOp.h62 || ((Lhs::Flags&RowMajorBit) == (Rhs::Flags&RowMajorBit))),
223 enum { IsRowMajor = (int(Lhs::Flags)&RowMajorBit)==RowMajorBit };
264 enum { IsRowMajor = (int(Rhs::Flags)&RowMajorBit)==RowMajorBit };
H A DSparseDiagonalProduct.h47 Flags = (SparseFlags&RowMajorBit),
71 : (_LhsNested::Flags&RowMajorBit) ? internal::SDP_IsSparseRowMajor : internal::SDP_IsSparseColMajor,
73 : (_RhsNested::Flags&RowMajorBit) ? internal::SDP_IsSparseRowMajor : internal::SDP_IsSparseColMajor
H A DSparseSparseProductWithPruning.h77 int LhsStorageOrder = traits<Lhs>::Flags&RowMajorBit,
78 int RhsStorageOrder = traits<Rhs>::Flags&RowMajorBit,
79 int ResStorageOrder = traits<ResultType>::Flags&RowMajorBit>
H A DConservativeSparseSparseProduct.h124 int LhsStorageOrder = (traits<Lhs>::Flags&RowMajorBit) ? RowMajor : ColMajor,
125 int RhsStorageOrder = (traits<Rhs>::Flags&RowMajorBit) ? RowMajor : ColMajor,
126 int ResStorageOrder = (traits<ResultType>::Flags&RowMajorBit) ? RowMajor : ColMajor>
H A DSparseDenseProduct.h64 Flags = Tr ? RowMajorBit : 0,
161 int LhsStorageOrder = ((SparseLhsType::Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor,
162 bool ColPerCol = ((DenseRhsType::Flags&RowMajorBit)==0) || DenseRhsType::ColsAtCompileTime==1>
/external/eigen/test/
H A Dvectorization_logic.cpp91 typedef Matrix<Scalar,(Matrix11::Flags&RowMajorBit)?16:4*PacketSize,(Matrix11::Flags&RowMajorBit)?4*PacketSize:16> Matrix44;
92 typedef Matrix<Scalar,(Matrix11::Flags&RowMajorBit)?16:4*PacketSize,(Matrix11::Flags&RowMajorBit)?4*PacketSize:16,DontAlign|EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION> Matrix44u;
104 DontAlign|((Matrix1::Flags&RowMajorBit)?RowMajor:ColMajor)> Matrix1u;
108 (PacketSize==8 ? 4 : PacketSize==4 ? 6 : PacketSize==2 ? ((Matrix11::Flags&RowMajorBit)?2:3) : /*PacketSize==1 ?*/ 1),
109 (PacketSize==8 ? 6 : PacketSize==4 ? 2 : PacketSize==2 ? ((Matrix11::Flags&RowMajorBit)?3:2) : /*PacketSize==1 ?*/ 3)
169 VERIFY(test_redux(Matrix44().template block<(Matrix1::Flags&RowMajorBit)?4:PacketSize,(Matrix1::Flags&RowMajorBit)?PacketSize:4>(1,2),
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointProduct.h65 StorageOrder = (internal::traits<MatrixType>::Flags&RowMajorBit) ? RowMajor : ColMajor,
97 enum { IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0 };
100 Scalar, _ActualOtherType::Flags&RowMajorBit ? RowMajor : ColMajor, OtherBlasTraits::NeedToConjugate && NumTraits<Scalar>::IsComplex,
101 Scalar, _ActualOtherType::Flags&RowMajorBit ? ColMajor : RowMajor, (!OtherBlasTraits::NeedToConjugate) && NumTraits<Scalar>::IsComplex,
102 MatrixType::Flags&RowMajorBit ? RowMajor : ColMajor, UpLo>
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrixBase.h75 IsRowMajor = Flags & RowMajorBit ? 1 : 0
129 return (int(Flags) & RowMajorBit) ? this->rows() : this->cols();
135 return (int(Flags) & RowMajorBit) ? this->cols() : this->rows();
H A 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>
/external/eigen/Eigen/src/Core/util/
H A DConstants.h53 const unsigned int RowMajorBit = 0x1; member in namespace:Eigen
137 * outerStride(), innerStride(), and the RowMajorBit. This rules out expressions such as Diagonal, whose coefficients,
152 const unsigned int HereditaryBits = RowMajorBit
266 RowMajor = 0x1, // it is only a coincidence that this is equal to RowMajorBit -- don't rely on that
/external/eigen/demos/opengl/
H A 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/bench/btl/libs/eigen3/
H A Deigen3_interface.hh131 if(Dest::Flags&RowMajorBit)
140 if(Dest::Flags&RowMajorBit)
149 if(Dest::Flags&RowMajorBit)
/external/eigen/Eigen/src/Cholesky/
H A DLLT_MKL.h57 StorageOrder = MatrixType::Flags&RowMajorBit?RowMajor:ColMajor; \

Completed in 4910 milliseconds

123