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

  /external/eigen/Eigen/src/Core/
ReturnByValue.h 32 | EvalBeforeNestingBit) & ~DirectAccessBit
Assign_MKL.h 48 DstHasDirectAccess = Dst::Flags & DirectAccessBit,
49 SrcHasDirectAccess = Src::Flags & DirectAccessBit,
CwiseUnaryView.h 40 Flags = (traits<_MatrixTypeNested>::Flags & (HereditaryBits | LvalueBit | LinearAccessBit | DirectAccessBit)),
Diagonal.h 55 Flags = (unsigned int)_MatrixTypeNested::Flags & (HereditaryBits | LinearAccessBit | MaskLvalueBit | DirectAccessBit) & ~RowMajorBit,
SelfCwiseBinaryOp.h 36 // Note that it is still a good idea to preserve the DirectAccessBit
38 Flags = traits<CwiseBinaryOp<BinaryOp,Lhs,Rhs> >::Flags | (Lhs::Flags&DirectAccessBit) | (Lhs::Flags&LvalueBit),
StableNorm.h 162 Alignment = (int(Flags)&DirectAccessBit) || (int(Flags)&AlignedBit) ? 1 : 0
SelfAdjointView.h 42 & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit)), // FIXME these flags should be preserved
Block.h 88 DirectAccessBit |
DenseCoeffsBase.h 722 <Derived, (Derived::Flags & AlignedBit) || !(Derived::Flags & DirectAccessBit)>
Redux.h 206 alignment = bool(Derived::Flags & DirectAccessBit) || bool(Derived::Flags & AlignedBit)
Assign.h 29 DstHasDirectAccess = Derived::Flags & DirectAccessBit,
TriangularMatrix.h 147 Flags = (MatrixTypeNestedCleaned::Flags & (HereditaryBits) & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit))) | Mode,
  /external/eigen/Eigen/src/Core/util/
Constants.h 124 * Note that DirectAccessBit and LvalueBit are mutually orthogonal, as there are examples of expression having one but note
126 * \li writable expressions that don't have a very simple memory layout as a strided array, have LvalueBit but not DirectAccessBit
127 * \li Map-to-const expressions, for example Map<const Matrix>, have DirectAccessBit but not LvalueBit
140 * See the comment on LvalueBit for an explanation of how LvalueBit and DirectAccessBit are mutually orthogonal.
142 const unsigned int DirectAccessBit = 0x40;
ForwardDeclarations.h 27 enum { ret = (traits<Derived>::Flags & DirectAccessBit) ? 1 : 0 };
32 enum { has_direct_access = (traits<Derived>::Flags & DirectAccessBit) ? 1 : 0,
BlasUtil.h 160 HasUsableDirectAccess = ( (int(XprType::Flags)&DirectAccessBit)
XprHelper.h 158 enum { ret = LinearAccessBit | LvalueBit | DirectAccessBit | NestByRefBit | packet_access_bit | row_major_bit | aligned_bit };
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 97 _HasDirectAccess = (int(Flags)&DirectAccessBit) ? 1 : 0 // workaround sunCC

Completed in 234 milliseconds