Searched refs:LvalueBit (Results 1 - 21 of 21) sorted by relevance

/external/eigen/test/
H A Dmapped_matrix.cpp109 // 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) );
H A Dgeo_quaternion.cpp262 // 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) );
H A Dref.cpp149 // 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/
H A DConstants.h124 * 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; member in namespace:Eigen
140 * See the comment on LvalueBit for an explanation of how LvalueBit and DirectAccessBit are mutually orthogonal.
H A DXprHelper.h158 enum { ret = LinearAccessBit | LvalueBit | DirectAccessBit | NestByRefBit | packet_access_bit | row_major_bit | aligned_bit };
462 bool(traits<ExpressionType>::Flags & LvalueBit) };
H A DForwardDeclarations.h33 has_write_access = (traits<Derived>::Flags & LvalueBit) ? 1 : 0,
/external/eigen/Eigen/src/Eigen2Support/
H A DMinor.h46 Flags = _MatrixTypeNested::Flags & (HereditaryBits | LvalueBit),
/external/eigen/Eigen/src/Core/
H A DCwiseUnaryView.h40 Flags = (traits<_MatrixTypeNested>::Flags & (HereditaryBits | LvalueBit | LinearAccessBit | DirectAccessBit)),
H A DMap.h96 Flags3 = is_lvalue<PlainObjectType>::value ? int(Flags2) : (int(Flags2) & ~LvalueBit),
H A DDiagonalMatrix.h130 Flags = LvalueBit
242 Flags = traits<DiagonalVectorType>::Flags & LvalueBit
H A DTranspose.h44 FlagsLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
45 Flags0 = MatrixTypeNestedPlain::Flags & ~(LvalueBit | NestByRefBit),
H A DBandMatrix.h189 Flags = LvalueBit,
251 Flags = LvalueBit,
H A DDiagonal.h54 MaskLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
H A DReverse.h52 Flags = int(_MatrixTypeNested::Flags) & (HereditaryBits | LvalueBit | PacketAccessBit | LinearAccess),
H A DSelfCwiseBinaryOp.h38 Flags = traits<CwiseBinaryOp<BinaryOp,Lhs,Rhs> >::Flags | (Lhs::Flags&DirectAccessBit) | (Lhs::Flags&LvalueBit),
H A DBlock.h85 FlagsLvalueBit = is_lvalue<XprType>::value ? LvalueBit : 0,
H A DDenseCoeffsBase.h44 // - 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/
H A DDynamicSparseMatrix.h48 Flags = _Options | NestByRefBit | LvalueBit,
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h220 Flags = IsAligned ? (AlignedBit | LvalueBit) : LvalueBit
319 Flags = TraitsBase::Flags & ~LvalueBit
/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h43 Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit),
H A DSparseMatrix.h54 Flags = _Options | NestByRefBit | LvalueBit,

Completed in 231 milliseconds