Home | History | Annotate | Download | only in Core

Lines Matching refs:row

60     const Scalar coeff(Index row, Index col) const
62 return m_diagonal.diagonal().coeff(ProductOrder == OnTheLeft ? row : col) * m_matrix.coeff(row, col);
66 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const
71 const Index indexInDiagonalVector = ProductOrder == OnTheLeft ? row : col;
73 return packet_impl<LoadMode>(row,col,indexInDiagonalVector,typename internal::conditional<
80 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::true_type) const
82 return internal::pmul(m_matrix.template packet<LoadMode>(row, col),
87 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::false_type) const
93 return internal::pmul(m_matrix.template packet<LoadMode>(row, col),