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

  /external/eigen/test/
mapped_matrix.cpp 109 // verify that map-to-const don't have LvalueBit
111 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
112 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
113 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
114 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
geo_quaternion.cpp 262 // verify that map-to-const don't have LvalueBit
264 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
265 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
266 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
267 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
ref.cpp 149 // verify that ref-to-const don't have LvalueBit
151 VERIFY( !(internal::traits<Ref<ConstPlainObjectType> >::Flags & LvalueBit) );
152 VERIFY( !(internal::traits<Ref<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
153 VERIFY( !(Ref<ConstPlainObjectType>::Flags & LvalueBit) );
154 VERIFY( !(Ref<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
  /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
129 * Expressions having LvalueBit also have their coeff() method returning a const reference instead of returning a new value.
131 const unsigned int LvalueBit = 0x20;
140 * See the comment on LvalueBit for an explanation of how LvalueBit and DirectAccessBit are mutually orthogonal.
XprHelper.h 158 enum { ret = LinearAccessBit | LvalueBit | DirectAccessBit | NestByRefBit | packet_access_bit | row_major_bit | aligned_bit };
462 bool(traits<ExpressionType>::Flags & LvalueBit) };
ForwardDeclarations.h 33 has_write_access = (traits<Derived>::Flags & LvalueBit) ? 1 : 0,
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 46 Flags = _MatrixTypeNested::Flags & (HereditaryBits | LvalueBit),
  /external/eigen/Eigen/src/Core/
DiagonalMatrix.h 130 Flags = LvalueBit
242 Flags = traits<DiagonalVectorType>::Flags & LvalueBit
CwiseUnaryView.h 40 Flags = (traits<_MatrixTypeNested>::Flags & (HereditaryBits | LvalueBit | LinearAccessBit | DirectAccessBit)),
Map.h 96 Flags3 = is_lvalue<PlainObjectType>::value ? int(Flags2) : (int(Flags2) & ~LvalueBit),
Transpose.h 44 FlagsLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
45 Flags0 = MatrixTypeNestedPlain::Flags & ~(LvalueBit | NestByRefBit),
BandMatrix.h 189 Flags = LvalueBit,
251 Flags = LvalueBit,
Diagonal.h 54 MaskLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
Reverse.h 52 Flags = int(_MatrixTypeNested::Flags) & (HereditaryBits | LvalueBit | PacketAccessBit | LinearAccess),
SelfCwiseBinaryOp.h 38 Flags = traits<CwiseBinaryOp<BinaryOp,Lhs,Rhs> >::Flags | (Lhs::Flags&DirectAccessBit) | (Lhs::Flags&LvalueBit),
Block.h 85 FlagsLvalueBit = is_lvalue<XprType>::value ? LvalueBit : 0,
DenseCoeffsBase.h 44 // - The LvalueBit means exactly that we can offer a coeffRef() method, which means exactly that we can get references
49 typedef typename internal::conditional<bool(internal::traits<Derived>::Flags&LvalueBit),
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 48 Flags = _Options | NestByRefBit | LvalueBit,
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 220 Flags = IsAligned ? (AlignedBit | LvalueBit) : LvalueBit
319 Flags = TraitsBase::Flags & ~LvalueBit
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 43 Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit),
SparseMatrix.h 54 Flags = _Options | NestByRefBit | LvalueBit,
    [all...]

Completed in 158 milliseconds