Home
last modified time | relevance | path

Searched refs:rhsIt (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DConservativeSparseSparseProduct.h52 for (typename evaluator<Rhs>::InnerIterator rhsIt(rhsEval, j); rhsIt; ++rhsIt)
54 Scalar y = rhsIt.value();
55 Index k = rhsIt.index();
275 for (typename evaluator<Rhs>::InnerIterator rhsIt(rhsEval, j); rhsIt; ++rhsIt)
277 Scalar y = rhsIt.value();
278 Index k = rhsIt.index();
DSparseSparseProductWithPruning.h62 for (typename evaluator<Rhs>::InnerIterator rhsIt(rhsEval, j); rhsIt; ++rhsIt) in sparse_sparse_product_with_pruning_impl()
66 Scalar x = rhsIt.value(); in sparse_sparse_product_with_pruning_impl()
67 for (typename evaluator<Lhs>::InnerIterator lhsIt(lhsEval, rhsIt.index()); lhsIt; ++lhsIt) in sparse_sparse_product_with_pruning_impl()
DTriangularSolver.h231 for (typename Rhs::InnerIterator rhsIt(other, col); rhsIt; ++rhsIt)
233 tempVector.coeffRef(rhsIt.index()) = rhsIt.value();
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixVector.h114 const Scalar* EIGEN_RESTRICT rhsIt = rhs + alignedStart; in run() local
120 … Packet Bi = ploadu<Packet>(rhsIt); rhsIt += PacketSize; // FIXME should be aligned in most cases in run()