HomeSort by relevance Sort by last modified time
    Searched refs:m_temp (Results 1 - 7 of 7) sorted by null

  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 102 m_temp(size),
121 m_temp(matrix.rows()),
130 _compute(m_matrix, m_hCoeffs, m_temp);
161 _compute(m_matrix, m_hCoeffs, m_temp);
277 VectorType m_temp; member in class:Eigen::HessenbergDecomposition
  /external/eigen/Eigen/src/SVD/
JacobiSVD_LAPACKE.h 70 MatrixType m_temp; m_temp = matrix; \
71 LAPACKE_##LAPACKE_PREFIX##gesvd( matrix_order, jobu, jobvt, internal::convert_index<lapack_int>(m_rows), internal::convert_index<lapack_int>(m_cols), (LAPACKE_TYPE*)m_temp.data(), lda, (LAPACKE_RTYPE*)m_singularValues.data(), u, ldu, vt, ldvt, superb.data()); \
  /external/eigen/Eigen/src/QR/
CompleteOrthogonalDecomposition.h 85 CompleteOrthogonalDecomposition() : m_cpqr(), m_zCoeffs(), m_temp() {}
94 : m_cpqr(rows, cols), m_zCoeffs((std::min)(rows, cols)), m_temp(cols) {}
116 m_temp(matrix.cols())
131 m_temp(matrix.cols())
387 RowVectorType m_temp; member in class:Eigen::CompleteOrthogonalDecomposition
421 m_temp.resize(cols);
456 &m_temp(0));
HouseholderQR.h 70 HouseholderQR() : m_qr(), m_hCoeffs(), m_temp(), m_isInitialized(false) {}
81 m_temp(cols),
100 m_temp(matrix.cols()),
118 m_temp(matrix.cols()),
231 RowVectorType m_temp; member in class:Eigen::HouseholderQR
389 m_temp.resize(cols);
391 internal::householder_qr_inplace_blocked<MatrixType, HCoeffsType>::run(m_qr, m_hCoeffs, 48, m_temp.data());
ColPivHouseholderQR.h 88 m_temp(),
105 m_temp(cols),
129 m_temp(matrix.cols()),
150 m_temp(matrix.cols()),
438 RowVectorType m_temp; member in class:Eigen::ColPivHouseholderQR
495 m_temp.resize(cols);
548 .applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), m_hCoeffs.coeffRef(k), &m_temp.coeffRef(k+1));
FullPivHouseholderQR.h 93 m_temp(),
109 m_temp(cols),
132 m_temp(matrix.cols()),
152 m_temp(matrix.cols()),
416 RowVectorType m_temp; member in class:Eigen::FullPivHouseholderQR
469 m_temp.resize(cols);
528 .applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), m_hCoeffs.coeffRef(k), &m_temp.coeffRef(k+1));
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 340 : Base(), m_temp(op)
342 ::new (static_cast<Base*>(this)) Base(m_temp);
346 PlainObject m_temp; member in struct:Eigen::internal::unary_evaluator

Completed in 672 milliseconds