HomeSort by relevance Sort by last modified time
    Searched defs:lazyAssign (Results 1 - 6 of 6) sorted by null

  /external/eigen/Eigen/src/Core/
SelfCwiseBinaryOp.h 125 // reimplement lazyAssign to handle complex *= real
128 EIGEN_STRONG_INLINE SelfCwiseBinaryOp& lazyAssign(const DenseBase<RhsDerived>& rhs)
Assign.h 485 ::lazyAssign(const DenseBase<OtherDerived>& other)
522 static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.derived()); }
526 static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.eval()); }
530 static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.transpose()); }
534 static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.transpose().eval()); }
MatrixBase.h 78 using Base::lazyAssign;
164 Derived& lazyAssign(const ProductBase<ProductDerived, Lhs,Rhs>& other);
470 Derived& lazyAssign(const Flagged<OtherDerived, 0, EvalBeforeAssigningBit>& other)
471 { return lazyAssign(other._expression()); }
ProductBase.h 270 Derived& MatrixBase<Derived>::lazyAssign(const ProductBase<ProductDerived, Lhs,Rhs>& other)
PlainObjectBase.h 388 /** \sa MatrixBase::lazyAssign() */
390 EIGEN_STRONG_INLINE Derived& lazyAssign(const DenseBase<OtherDerived>& other)
393 return Base::lazyAssign(other.derived());
594 // I don't think we need this resize call since the lazyAssign will anyways resize
595 // and lazyAssign will be called by the assign selector.
597 // the 'false' below means to enforce lazy evaluation. We don't use lazyAssign() because
    [all...]
TriangularMatrix.h 251 void lazyAssign(const TriangularBase<OtherDerived>& other);
254 void lazyAssign(const MatrixBase<OtherDerived>& other);
358 TriangularView<SwapWrapper<MatrixType>,Mode>(const_cast<MatrixType&>(m_matrix)).lazyAssign(other.derived());
365 TriangularView<SwapWrapper<MatrixType>,Mode>(swaper).lazyAssign(other.derived());
598 other_evaluated.template triangularView<Mode>().lazyAssign(other.derived());
599 lazyAssign(other_evaluated);
602 lazyAssign(other.derived());
609 void TriangularView<MatrixType, Mode>::lazyAssign(const MatrixBase<OtherDerived>& other)
636 other_evaluated.template triangularView<Mode>().lazyAssign(other.derived().nestedExpression());
637 lazyAssign(other_evaluated)
    [all...]

Completed in 47 milliseconds