OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lazyAssign
(Results
1 - 7
of
7
) sorted by null
/external/eigen/Eigen/src/Core/
ReturnByValue.h
90
Derived& DenseBase<Derived>::
lazyAssign
(const ReturnByValue<OtherDerived>& other)
SelfCwiseBinaryOp.h
125
// reimplement
lazyAssign
to handle complex *= real
128
EIGEN_STRONG_INLINE SelfCwiseBinaryOp&
lazyAssign
(const DenseBase<RhsDerived>& rhs)
Assign.h
492
::
lazyAssign
(const DenseBase<OtherDerived>& other)
527
static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.
lazyAssign
(other.derived()); }
533
static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.
lazyAssign
(other.eval()); }
537
static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.
lazyAssign
(other.transpose()); }
543
static EIGEN_STRONG_INLINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.
lazyAssign
(other.transpose().eval()); }
MatrixBase.h
78
using Base::
lazyAssign
;
163
Derived&
lazyAssign
(const ProductBase<ProductDerived, Lhs,Rhs>& other);
166
Derived&
lazyAssign
(const MatrixPowerProduct<MatrixPower, Lhs,Rhs>& other);
468
Derived&
lazyAssign
(const Flagged<OtherDerived, 0, EvalBeforeAssigningBit>& other)
469
{ return
lazyAssign
(other._expression()); }
ProductBase.h
282
Derived& MatrixBase<Derived>::
lazyAssign
(const ProductBase<ProductDerived, Lhs,Rhs>& other)
PlainObjectBase.h
409
/** \sa MatrixBase::
lazyAssign
() */
411
EIGEN_STRONG_INLINE Derived&
lazyAssign
(const DenseBase<OtherDerived>& other)
414
return Base::
lazyAssign
(other.derived());
618
// I don't think we need this resize call since the
lazyAssign
will anyways resize
619
// and
lazyAssign
will be called by the assign selector.
621
// 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());
428
lazyAssign
(alpha*prod.eval());
608
other_evaluated.template triangularView<Mode>().
lazyAssign
(other.derived());
609
lazyAssign
(other_evaluated);
612
lazyAssign
(other.derived());
619
void TriangularView<MatrixType, Mode>::
lazyAssign
(const MatrixBase<OtherDerived>& other)
646
other_evaluated.template triangularView<Mode>().
lazyAssign
(other.derived().nestedExpression())
[
all
...]
Completed in 896 milliseconds