HomeSort by relevance Sort by last modified time
    Searched refs:LinearAccessBit (Results 1 - 17 of 17) sorted by null

  /external/eigen/Eigen/src/Core/
CwiseUnaryOp.h 48 HereditaryBits | LinearAccessBit | AlignedBit
CwiseUnaryView.h 40 Flags = (traits<_MatrixTypeNested>::Flags & (HereditaryBits | LvalueBit | LinearAccessBit | DirectAccessBit)),
Map.h 95 ? int(Flags1) : int(Flags1 & ~LinearAccessBit),
Block.h 84 FlagsLinearAccessBit = (RowsAtCompileTime == 1 || ColsAtCompileTime == 1 || (InnerPanel && (traits<XprType>::Flags&LinearAccessBit))) ? LinearAccessBit : 0,
Assign_MKL.h 62 MightLinearize = MightEnableVml && (int(Dst::Flags) & int(Src::Flags) & LinearAccessBit),
CwiseBinaryOp.h 78 | (StorageOrdersAgree ? LinearAccessBit : 0)
Diagonal.h 55 Flags = (unsigned int)_MatrixTypeNested::Flags & (HereditaryBits | LinearAccessBit | MaskLvalueBit | DirectAccessBit) & ~RowMajorBit,
DiagonalProduct.h 35 _LinearAccessMask = (RowsAtCompileTime==1 || ColsAtCompileTime==1) ? LinearAccessBit : 0,
MapBase.h 15 EIGEN_STATIC_ASSERT((int(internal::traits<Derived>::Flags) & LinearAccessBit) || Derived::IsVectorAtCompileTime, \
Reverse.h 50 ? LinearAccessBit : 0,
SelfAdjointView.h 42 & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit)), // FIXME these flags should be preserved
Redux.h 40 MayLinearVectorize = MightVectorize && (int(Derived::Flags)&LinearAccessBit),
CwiseNullaryOp.h 40 | (functor_has_linear_access<NullaryOp>::ret ? LinearAccessBit : 0)
Assign.h 52 MayLinearize = StorageOrdersAgree && (int(Derived::Flags) & int(OtherDerived::Flags) & LinearAccessBit),
TriangularMatrix.h 147 Flags = (MatrixTypeNestedCleaned::Flags & (HereditaryBits) & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit))) | Mode,
  /external/eigen/Eigen/src/Core/util/
Constants.h 106 * (row,col)-based access. Expressions for which that isn't possible don't have the LinearAccessBit.
108 * If both PacketAccessBit and LinearAccessBit are set, then the
112 * Typically, all vector expressions have the LinearAccessBit, but there is one exception:
115 * not index-based packet access, so they don't have the LinearAccessBit.
117 const unsigned int LinearAccessBit = 0x10;
XprHelper.h 158 enum { ret = LinearAccessBit | LvalueBit | DirectAccessBit | NestByRefBit | packet_access_bit | row_major_bit | aligned_bit };

Completed in 395 milliseconds