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

  /external/eigen/test/
map.cpp 112 // verify that map-to-const don't have LvalueBit
114 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
115 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
116 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
117 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
geo_quaternion.cpp 233 // verify that map-to-const don't have LvalueBit
235 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
236 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
237 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
238 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
  /external/eigen/Eigen/src/Core/util/
Constants.h 119 * Note that DirectAccessBit and LvalueBit are mutually orthogonal, as there are examples of expression having one but note
121 * \li writable expressions that don't have a very simple memory layout as a strided array, have LvalueBit but not DirectAccessBit
122 * \li Map-to-const expressions, for example Map<const Matrix>, have DirectAccessBit but not LvalueBit
124 * Expressions having LvalueBit also have their coeff() method returning a const reference instead of returning a new value.
126 const unsigned int LvalueBit = 0x20;
135 * See the comment on LvalueBit for an explanation of how LvalueBit and DirectAccessBit are mutually orthogonal.
XprHelper.h 136 enum { ret = LinearAccessBit | LvalueBit | DirectAccessBit | NestByRefBit | packet_access_bit | row_major_bit | aligned_bit };
440 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 113 Flags = LvalueBit
225 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 86 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 221 Flags = IsAligned ? (AlignedBit | LvalueBit) : LvalueBit
333 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 1419 milliseconds