OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rhsit
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/SparseCore/
SparseSparseProductWithPruning.h
59
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)
ConservativeSparseSparseProduct.h
48
for (typename Rhs::InnerIterator
rhsIt
(rhs, j);
rhsIt
; ++
rhsIt
)
50
Scalar y =
rhsIt
.value();
51
Index k =
rhsIt
.index();
TriangularSolver.h
228
for (typename Rhs::InnerIterator
rhsIt
(other, col);
rhsIt
; ++
rhsIt
)
230
tempVector.coeffRef(
rhsIt
.index()) =
rhsIt
.value();
/external/eigen/Eigen/src/Core/products/
SelfadjointMatrixVector.h
124
const Scalar* EIGEN_RESTRICT
rhsIt
= rhs + alignedStart;
130
Packet Bi = ploadu<Packet>(
rhsIt
);
rhsIt
+= PacketSize; // FIXME should be aligned in most cases
Completed in 107 milliseconds