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

1 2

  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 35 LvalueBitFlag = is_lvalue<ExpressionType>::value ? LvalueBit : 0,
36 Flags = (Flags0 & ~(NestByRefBit | LvalueBit)) | LvalueBitFlag
133 LvalueBitFlag = is_lvalue<ExpressionType>::value ? LvalueBit : 0,
134 Flags = (Flags0 & ~(NestByRefBit | LvalueBit)) | LvalueBitFlag
Map.h 31 Flags = is_lvalue<PlainObjectType>::value ? int(Flags0) : (int(Flags0) & ~LvalueBit)
CwiseUnaryView.h 26 FlagsLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
Reverse.h 33 Flags = _MatrixTypeNested::Flags & (RowMajorBit | LvalueBit)
DiagonalMatrix.h 111 Flags = LvalueBit | NoPreferredStorageOrderBit
239 Flags = (traits<DiagonalVectorType>::Flags & LvalueBit) | NoPreferredStorageOrderBit
Transpose.h 27 FlagsLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
28 Flags0 = traits<MatrixTypeNestedPlain>::Flags & ~(LvalueBit | NestByRefBit),
BandMatrix.h 189 Flags = LvalueBit,
251 Flags = LvalueBit,
Diagonal.h 54 MaskLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
SelfAdjointView.h 41 FlagsLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
DenseCoeffsBase.h 43 // - The LvalueBit means exactly that we can offer a coeffRef() method, which means exactly that we can get references
48 typedef typename internal::conditional<bool(internal::traits<Derived>::Flags&LvalueBit),
Block.h 51 FlagsLvalueBit = is_lvalue<XprType>::value ? LvalueBit : 0,
  /external/eigen/test/
sparse_ref.cpp 36 // verify that ref-to-const don't have LvalueBit
38 VERIFY( !(internal::traits<Ref<ConstPlainObjectType> >::Flags & LvalueBit) );
39 VERIFY( !(internal::traits<Ref<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
40 VERIFY( !(Ref<ConstPlainObjectType>::Flags & LvalueBit) );
41 VERIFY( !(Ref<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
mapped_matrix.cpp 154 // verify that map-to-const don't have LvalueBit
156 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
157 VERIFY( !(internal::traits<Map<ConstPlainObjectType, AlignedMax> >::Flags & LvalueBit) );
158 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
159 VERIFY( !(Map<ConstPlainObjectType, AlignedMax>::Flags & LvalueBit) );
array_for_matrix.cpp 245 // Check propagation of LvalueBit through Array/Matrix-Wrapper
256 VERIFY((internal::traits<ArrayWrapper<const Matrix4i> >::Flags&LvalueBit)==0);
257 VERIFY((internal::traits<MatrixWrapper<const Array4i> >::Flags&LvalueBit)==0);
259 VERIFY((internal::traits<ArrayWrapper<Matrix4i> >::Flags&LvalueBit)==LvalueBit);
260 VERIFY((internal::traits<MatrixWrapper<Array4i> >::Flags&LvalueBit)==LvalueBit);
geo_quaternion.cpp 267 // verify that map-to-const don't have LvalueBit
269 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
270 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
271 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
272 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
ref.cpp 144 // verify that ref-to-const don't have LvalueBit
146 VERIFY( !(internal::traits<Ref<ConstPlainObjectType> >::Flags & LvalueBit) );
147 VERIFY( !(internal::traits<Ref<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
148 VERIFY( !(Ref<ConstPlainObjectType>::Flags & LvalueBit) );
149 VERIFY( !(Ref<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorTraits.h 57 Flags = compute_tensor_flags<Scalar_, Options_>::ret | (is_const<Scalar_>::value ? 0 : LvalueBit)
75 Flags = compute_tensor_flags<Scalar_, Options_>::ret | (is_const<Scalar_>::value ? 0: LvalueBit)
  /external/eigen/Eigen/src/Core/util/
Constants.h 132 * Note that DirectAccessBit and LvalueBit are mutually orthogonal, as there are examples of expression having one but note
134 * \li writable expressions that don't have a very simple memory layout as a strided array, have LvalueBit but not DirectAccessBit
135 * \li Map-to-const expressions, for example Map<const Matrix>, have DirectAccessBit but not LvalueBit
137 * Expressions having LvalueBit also have their coeff() method returning a const reference instead of returning a new value.
139 const unsigned int LvalueBit = 0x20;
148 * See the comment on LvalueBit for an explanation of how LvalueBit and DirectAccessBit are mutually orthogonal.
XprHelper.h 258 enum { ret = DirectAccessBit | LvalueBit | NestByRefBit | row_major_bit };
642 bool(traits<ExpressionType>::Flags & LvalueBit) };
717 if(f&LvalueBit) res += " | Lvalue";
    [all...]
ForwardDeclarations.h 33 has_write_access = (traits<Derived>::Flags & LvalueBit) ? 1 : 0,
  /external/eigen/Eigen/src/SparseCore/
SparseRef.h 48 Flags = (traits<SparseMatrix<MatScalar,MatOptions,MatIndex> >::Flags | CompressedAccessBit | NestByRefBit) & ~LvalueBit
76 Flags = (traits<SparseVector<MatScalar,MatOptions,MatIndex> >::Flags | CompressedAccessBit | NestByRefBit) & ~LvalueBit
SparseMap.h 35 Flags = TraitsBase::Flags & (~ (NestByRefBit | LvalueBit))
SparseVector.h 43 Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit) | CompressedAccessBit,
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 48 Flags = _Options | NestByRefBit | LvalueBit,
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 221 Flags = LvalueBit
326 Flags = TraitsBase::Flags & ~LvalueBit

Completed in 524 milliseconds

1 2