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

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

Completed in 85 milliseconds