OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lazyAssign
(Results
1 - 12
of
12
) sorted by null
/external/eigen/Eigen/src/Core/
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
...]
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()); }
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()); }
DenseBase.h
262
Derived&
lazyAssign
(const DenseBase<OtherDerived>& other);
387
SwapWrapper<Derived>(derived()).
lazyAssign
(other.derived());
396
SwapWrapper<Derived>(derived()).
lazyAssign
(other.derived());
ArrayBase.h
76
using Base::
lazyAssign
;
MapBase.h
66
using Base::
lazyAssign
;
SelfCwiseBinaryOp.h
125
// reimplement
lazyAssign
to handle complex *= real
128
EIGEN_STRONG_INLINE SelfCwiseBinaryOp&
lazyAssign
(const DenseBase<RhsDerived>& rhs)
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
...]
/external/eigen/Eigen/src/Eigen2Support/
SVD.h
590
if(scaling) scaling->
lazyAssign
(m_matV * sv.asDiagonal() * m_matV.adjoint());
595
rotation->
lazyAssign
(m * m_matV.adjoint());
616
if(scaling) scaling->
lazyAssign
(m_matU * sv.asDiagonal() * m_matU.adjoint());
621
rotation->
lazyAssign
(m * m_matV.adjoint());
/external/eigen/Eigen/src/Geometry/
Transform.h
[
all
...]
/external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h
196
m_result.
lazyAssign
(*this);
Completed in 695 milliseconds