Searched refs:LinearAccessBit (Results 1 - 17 of 17) sorted by relevance

/external/eigen/Eigen/src/Core/util/
H A DConstants.h106 * (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; member in namespace:Eigen
H A DXprHelper.h158 enum { ret = LinearAccessBit | LvalueBit | DirectAccessBit | NestByRefBit | packet_access_bit | row_major_bit | aligned_bit };
/external/eigen/Eigen/src/Core/
H A DCwiseUnaryOp.h48 HereditaryBits | LinearAccessBit | AlignedBit
H A DCwiseUnaryView.h40 Flags = (traits<_MatrixTypeNested>::Flags & (HereditaryBits | LvalueBit | LinearAccessBit | DirectAccessBit)),
H A DMap.h95 ? int(Flags1) : int(Flags1 & ~LinearAccessBit),
H A DBlock.h84 FlagsLinearAccessBit = (RowsAtCompileTime == 1 || ColsAtCompileTime == 1 || (InnerPanel && (traits<XprType>::Flags&LinearAccessBit))) ? LinearAccessBit : 0,
H A DDiagonal.h55 Flags = (unsigned int)_MatrixTypeNested::Flags & (HereditaryBits | LinearAccessBit | MaskLvalueBit | DirectAccessBit) & ~RowMajorBit,
H A DDiagonalProduct.h35 _LinearAccessMask = (RowsAtCompileTime==1 || ColsAtCompileTime==1) ? LinearAccessBit : 0,
H A DReverse.h50 ? LinearAccessBit : 0,
H A DAssign_MKL.h62 MightLinearize = MightEnableVml && (int(Dst::Flags) & int(Src::Flags) & LinearAccessBit),
H A DCwiseBinaryOp.h78 | (StorageOrdersAgree ? LinearAccessBit : 0)
H A DMapBase.h15 EIGEN_STATIC_ASSERT((int(internal::traits<Derived>::Flags) & LinearAccessBit) || Derived::IsVectorAtCompileTime, \
H A DSelfAdjointView.h42 & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit)), // FIXME these flags should be preserved
H A DRedux.h40 MayLinearVectorize = MightVectorize && (int(Derived::Flags)&LinearAccessBit),
H A DCwiseNullaryOp.h40 | (functor_has_linear_access<NullaryOp>::ret ? LinearAccessBit : 0)
H A DAssign.h52 MayLinearize = StorageOrdersAgree && (int(Derived::Flags) & int(OtherDerived::Flags) & LinearAccessBit),
H A DTriangularMatrix.h147 Flags = (MatrixTypeNestedCleaned::Flags & (HereditaryBits) & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit))) | Mode,

Completed in 1437 milliseconds