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

  /external/eigen/Eigen/src/SparseCore/
SparseRef.h 27 typedef SparseMatrix<MatScalar,MatOptions,MatIndex> PlainObjectType;
30 Flags = traits<PlainObjectType>::Flags | CompressedAccessBit | NestByRefBit
35 StorageOrderMatch = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime || ((PlainObjectType::Flags&RowMajorBit)==(Derived::Flags&RowMajorBit)),
56 typedef SparseVector<MatScalar,MatOptions,MatIndex> PlainObjectType;
59 Flags = traits<PlainObjectType>::Flags | CompressedAccessBit | NestByRefBit
131 typedef SparseMatrix<MatScalar,MatOptions,MatIndex> PlainObjectType;
262 typedef SparseVector<MatScalar,MatOptions,MatIndex> PlainObjectType;
SparseMap.h 21 typedef SparseMatrix<MatScalar,MatOptions,MatIndex> PlainObjectType;
22 typedef traits<PlainObjectType> TraitsBase;
32 typedef SparseMatrix<MatScalar,MatOptions,MatIndex> PlainObjectType;
33 typedef traits<PlainObjectType> TraitsBase;
  /external/eigen/Eigen/src/Core/
Ref.h 21 typedef _PlainObjectType PlainObjectType;
32 StorageOrderMatch = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime || ((PlainObjectType::Flags&RowMajorBit)==(Derived::Flags&RowMajorBit)),
44 AlignmentMatch = (int(traits<PlainObjectType>::Alignment)==int(Unaligned)) || (DerivedAlignment >= int(Alignment)), // FIXME the first condition is not very clear, it should be replaced by the required alignment
45 ScalarTypeMatch = internal::is_same<typename PlainObjectType::Scalar, typename Derived::Scalar>::value,
61 typedef typename internal::traits<Derived>::PlainObjectType PlainObjectType;
98 if(PlainObjectType::RowsAtCompileTime==1)
103 else if(PlainObjectType::ColsAtCompileTime==1)
111 if(Expression::IsVectorAtCompileTime && (!PlainObjectType::IsVectorAtCompileTime) && ((Expression::Flags&RowMajorBit)!=(PlainObjectType::Flags&RowMajorBit))
    [all...]
CoreEvaluators.h 130 typedef PlainObjectBase<Derived> PlainObjectType;
131 typedef typename PlainObjectType::Scalar Scalar;
132 typedef typename PlainObjectType::CoeffReturnType CoeffReturnType;
135 IsRowMajor = PlainObjectType::IsRowMajor,
136 IsVectorAtCompileTime = PlainObjectType::IsVectorAtCompileTime,
137 RowsAtCompileTime = PlainObjectType::RowsAtCompileTime,
138 ColsAtCompileTime = PlainObjectType::ColsAtCompileTime,
154 EIGEN_DEVICE_FUNC explicit evaluator(const PlainObjectType& m)
454 template<typename NullaryOp, typename PlainObjectType>
455 struct evaluator<CwiseNullaryOp<NullaryOp,PlainObjectType> >
    [all...]

Completed in 126 milliseconds