Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/SparseCore/
DSparseSparseProductWithPruning.h59 for (typename Rhs::InnerIterator rhsIt(rhs, j); rhsIt; ++rhsIt) in sparse_sparse_product_with_pruning_impl()
63 Scalar x = rhsIt.value(); in sparse_sparse_product_with_pruning_impl()
64 for (typename Lhs::InnerIterator lhsIt(lhs, rhsIt.index()); lhsIt; ++lhsIt) in sparse_sparse_product_with_pruning_impl()
DConservativeSparseSparseProduct.h48 for (typename Rhs::InnerIterator rhsIt(rhs, j); rhsIt; ++rhsIt) in conservative_sparse_sparse_product_impl()
50 Scalar y = rhsIt.value(); in conservative_sparse_sparse_product_impl()
51 Index k = rhsIt.index(); in conservative_sparse_sparse_product_impl()
DTriangularSolver.h228 for (typename Rhs::InnerIterator rhsIt(other, col); rhsIt; ++rhsIt)
230 tempVector.coeffRef(rhsIt.index()) = rhsIt.value();
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixVector.h124 const Scalar* EIGEN_RESTRICT rhsIt = rhs + alignedStart; in run() local
130 … Packet Bi = ploadu<Packet>(rhsIt); rhsIt += PacketSize; // FIXME should be aligned in most cases in run()