Home | History | Annotate | Download | only in Core

Lines Matching refs:row

110     inline Scalar& operator()(Index row, Index col)
112 eigen_assert(row >= 0 && row < rows() && col >= 0 && col < cols());
113 return coeffRef(row, col);
116 inline Scalar& coeffRef(Index row, Index col)
118 return m_matrix.const_cast_derived().coeffRef(ReverseRow ? m_matrix.rows() - row - 1 : row,
122 inline CoeffReturnType coeff(Index row, Index col) const
124 return m_matrix.coeff(ReverseRow ? m_matrix.rows() - row - 1 : row,
145 inline const PacketScalar packet(Index row, Index col) const
148 ReverseRow ? m_matrix.rows() - row - OffsetRow : row,
153 inline void writePacket(Index row, Index col, const PacketScalar& x)
156 ReverseRow ? m_matrix.rows() - row - OffsetRow : row,