HomeSort by relevance Sort by last modified time
    Searched defs:evalTo (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/eigen/Eigen/src/Core/
EigenBase.h 52 template<typename Dest> inline void evalTo(Dest& dst) const
53 { derived().evalTo(dst); }
61 evalTo(res);
71 evalTo(res);
99 * \details The expression must provide a (templated) evalTo(Derived& dst) const
109 other.derived().evalTo(derived());
ReturnByValue.h 60 inline void evalTo(Dest& dst) const
61 { static_cast<const Derived*>(this)->evalTo(dst); }
82 other.evalTo(derived());
ArrayWrapper.h 116 inline void evalTo(Dest& dst) const { dst = m_expression; }
Transpositions.h 374 template<typename Dest> inline void evalTo(Dest& dst) const
Assign.h 522 static EIGEN_STRONG_INLINE Derived& evalTo(ActualDerived& dst, const ActualOtherDerived& other) { other.evalTo(dst); return dst; }
532 static EIGEN_STRONG_INLINE Derived& evalTo(ActualDerived& dst, const ActualOtherDerived& other) { Transpose<ActualDerived> dstTrans(dst); other.evalTo(dstTrans); return dst; }
571 return internal::assign_selector<Derived,OtherDerived,false>::evalTo(derived(), other.derived());
578 return internal::assign_selector<Derived,OtherDerived,false>::evalTo(derived(), other.derived());
BandMatrix.h 134 template<typename Dest> inline void evalTo(Dest& dst) const
148 evalTo(res);
DenseBase.h 493 // disable the use of evalTo for dense objects with a nice compilation error
494 template<typename Dest> inline void evalTo(Dest& ) const
DiagonalMatrix.h 45 void evalTo(MatrixBase<DenseDerived> &other) const;
101 void DiagonalBase<Derived>::evalTo(MatrixBase<DenseDerived> &other) const
PermutationMatrix.h 118 void evalTo(MatrixBase<DenseDerived>& other) const
553 template<typename Dest> inline void evalTo(Dest& dst) const
644 void evalTo(MatrixBase<DenseDerived>& other) const
ProductBase.h 102 inline void evalTo(Dest& dst) const { dst.setZero(); scaleAndAddTo(dst,Scalar(1)); }
120 derived().evalTo(m_result);
248 inline void evalTo(Dest& dst) const { dst.setZero(); scaleAndAddTo(dst, Scalar(1)); }
272 other.derived().evalTo(derived());
SolveTriangular.h 244 template<typename Dest> inline void evalTo(Dest& dst) const
  /external/eigen/Eigen/src/misc/
Kernel.h 55 template<typename Dest> inline void evalTo(Dest& dst) const
57 static_cast<const kernel_retval<DecompositionType>*>(this)->evalTo(dst);
Solve.h 49 template<typename Dest> inline void evalTo(Dest& dst) const
51 static_cast<const solve_retval<DecompositionType,Rhs>*>(this)->evalTo(dst);
Image.h 55 template<typename Dest> inline void evalTo(Dest& dst) const
57 static_cast<const image_retval<DecompositionType>*>(this)->evalTo(dst);
SparseSolve.h 44 template<typename Dest> inline void evalTo(Dest& dst) const
46 static_cast<const sparse_solve_retval<DecompositionType,Rhs>*>(this)->evalTo(dst);
112 template<typename Dest> inline void evalTo(Dest& dst) const
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BasicPreconditioners.h 112 template<typename Dest> void evalTo(Dest& dst) const
ConjugateGradient.h 255 template<typename Dest> void evalTo(Dest& dst) const
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 55 template<typename Dest> inline void evalTo(Dest& dst) const
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteLU.h 103 template<typename Dest> void evalTo(Dest& dst) const
MINRES.h 291 template<typename Dest> void evalTo(Dest& dst) const
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 354 inline void evalTo(ResultType& result) const
Tridiagonalization.h 538 inline void evalTo(ResultType& result) const
  /external/eigen/Eigen/src/LU/
Inverse.h 289 template<typename Dest> inline void evalTo(Dest& dst) const
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixExponential.h 418 inline void evalTo(ResultType& result) const
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 186 void evalTo(MatrixBase<DenseDerived>& dst) const {

Completed in 198 milliseconds

1 2 3