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

1 2

  /external/eigen/failtest/
swap_2.cpp 12 b.swap(ac.const_cast_derived());
  /external/eigen/Eigen/src/Core/
NestByValue.h 56 return m_expression.const_cast_derived().coeffRef(row, col);
66 return m_expression.const_cast_derived().coeffRef(index);
78 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
90 m_expression.const_cast_derived().template writePacket<LoadMode>(index, x);
ForceAlignedAccess.h 56 return m_expression.const_cast_derived().coeffRef(row, col);
66 return m_expression.const_cast_derived().coeffRef(index);
78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x);
90 m_expression.const_cast_derived().template writePacket<Aligned>(index, x);
EigenBase.h 51 inline Derived& const_cast_derived() const function in struct:Eigen::EigenBase
ArrayBase.h 65 using Base::const_cast_derived;
CwiseUnaryView.h 84 nestedExpression() { return m_matrix.const_cast_derived(); }
Reverse.h 206 internal::vectorwise_reverse_inplace_impl<Direction>::run(_expression().const_cast_derived());
Ref.h 224 Base::construct(expr.const_cast_derived());
DenseBase.h 77 using Base::const_cast_derived;
418 call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
SolveTriangular.h 169 OtherDerived& other = _other.const_cast_derived();
TriangularMatrix.h 523 call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
533 call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
799 Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
    [all...]
ProductEvaluators.h 303 struct set { template<typename Dst, typename Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() = src; } };
304 struct add { template<typename Dst, typename Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() += src; } };
305 struct sub { template<typename Dst, typename Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() -= src; } };
310 dst.const_cast_derived() += m_scale * src;
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseCompressedBase.h 295 operator Derived&() { return m_matrix->const_cast_derived(); }
306 return m_matrix->const_cast_derived().valuePtr()[p];
313 return m_matrix->const_cast_derived().valuePtr()[p];
SparseVector.h 305 swap(other.const_cast_derived());
434 operator SparseVectorType&() { return m_matrix->const_cast_derived(); }
SparseRef.h 171 Base::construct(expr.const_cast_derived());
289 Base::construct(expr.const_cast_derived());
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 107 cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.const_cast_derived()));
114 cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.const_cast_derived()));
123 cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.matrix().const_cast_derived()));
317 Ref<SparseMatrix<typename RhsDerived::Scalar,ColMajor,typename RhsDerived::StorageIndex> > b_ref(b.const_cast_derived());
  /external/eigen/test/
evaluators.cpp 24 call_assignment(dst.const_cast_derived(), src.derived(), internal::assign_op<typename DstXprType::Scalar,typename SrcXprType::Scalar>());
25 return dst.const_cast_derived();
45 dst.const_cast_derived().resizeLike(src.derived());
48 call_assignment(dst.const_cast_derived(), src.derived(), internal::assign_op<typename DstXprType::Scalar,typename SrcXprType::Scalar>());
49 return dst.const_cast_derived();
70 call_assignment(dst.const_cast_derived(), src.derived(), internal::mul_assign_op<Scalar,typename SrcXprType::Scalar>());
77 call_assignment(dst.const_cast_derived(), src.derived(), internal::div_assign_op<Scalar,typename SrcXprType::Scalar>());
84 call_assignment(dst.const_cast_derived(), src.const_cast_derived(), internal::swap_assign_op<Scalar>());
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h 75 m_matrix.const_cast_derived()._data()[m_outerStart+j].swap(aux._data());
DynamicSparseMatrix.h 267 swap(other.const_cast_derived());
378 operator SparseMatrixType&() { return m_matrix->const_cast_derived(); }
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 86 ::run(_expression().const_cast_derived().data(),_expression().outerStride(),UType(actualU),VType(actualV),actualAlpha);
SelfadjointProduct.h 126 selfadjoint_product_selector<MatrixType,DerivedU,UpLo>::run(_expression().const_cast_derived(), u.derived(), alpha);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 99 inline Derived& const_cast_derived() const { function in class:Eigen::SkylineMatrixBase
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 668 m_sluB = SluMatrix::Map(b_ref.const_cast_derived());
669 m_sluX = SluMatrix::Map(x_ref.const_cast_derived());
675 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());
    [all...]
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 270 y_cd = viewAsCholmod(m_other.const_cast_derived());
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 327 SubVectorsType sub_vecs1(m_vectors.const_cast_derived(), Side==OnTheRight ? k : start,

Completed in 294 milliseconds

1 2