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

  /external/eigen/Eigen/src/Core/
SolveTriangular.h 182 typename internal::plain_matrix_type_column_major<OtherDerived>::type, OtherDerived&>::type OtherCopy;
183 OtherCopy otherCopy(other);
185 internal::triangular_solver_selector<MatrixType, typename internal::remove_reference<OtherCopy>::type,
186 Side, Mode>::run(nestedExpression(), otherCopy);
189 other = otherCopy;
  /external/eigen/Eigen/src/SparseCore/
TriangularSolver.h 174 typename internal::plain_matrix_type_column_major<OtherDerived>::type, OtherDerived&>::type OtherCopy;
175 OtherCopy otherCopy(other.derived());
177 internal::sparse_solve_triangular_selector<ExpressionType, typename internal::remove_reference<OtherCopy>::type, Mode>::run(m_matrix, otherCopy);
180 other = otherCopy;
299 // typename internal::plain_matrix_type_column_major<OtherDerived>::type, OtherDerived&>::type OtherCopy;
300 // OtherCopy otherCopy(other.derived());
305 // other = otherCopy;
    [all...]
SparseMatrix.h 634 typedef typename internal::nested<OtherDerived,2>::type OtherCopy;
635 typedef typename internal::remove_all<OtherCopy>::type _OtherCopy;
636 OtherCopy otherCopy(other.derived());
641 for (Index j=0; j<otherCopy.outerSize(); ++j)
642 for (typename _OtherCopy::InnerIterator it(otherCopy, j); it; ++it)
659 for (Index j=0; j<otherCopy.outerSize(); ++j)
661 for (typename _OtherCopy::InnerIterator it(otherCopy, j); it; ++it)
    [all...]

Completed in 91 milliseconds