Home
last modified time | relevance | path

Searched refs:applyThisOnTheLeft (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h320 applyThisOnTheLeft(dst,workspace,true);
322 applyThisOnTheLeft(dst,workspace,true);
361 …template<typename Dest> inline void applyThisOnTheLeft(Dest& dst, bool inputIsIdentity = false) co…
364 applyThisOnTheLeft(dst, workspace, inputIsIdentity);
369 …inline void applyThisOnTheLeft(Dest& dst, Workspace& workspace, bool inputIsIdentity = false) const
427 applyThisOnTheLeft(res, internal::is_identity<OtherDerived>::value && res.rows()==res.cols());
/aosp_15_r20/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h180 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixU, m_workspace); in run()
236 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run()
278 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixU, m_workspace); in run()
333 m_qr.householderQ().applyThisOnTheLeft(svd.m_matrixV, m_workspace); in run()
H A DBDCSVD.h340 householderU.applyThisOnTheLeft(m_matrixU); // FIXME this line involves a temporary buffer
347 householderV.applyThisOnTheLeft(m_matrixV); // FIXME this line involves a temporary buffer
/aosp_15_r20/external/eigen/Eigen/src/Core/
H A DEigenBase.h110 EIGEN_DEVICE_FUNC inline void applyThisOnTheLeft(Dest& dst) const in applyThisOnTheLeft() function
H A DMatrixBase.h542 other.derived().applyThisOnTheLeft(derived()); in applyOnTheLeft()