Home | History | Annotate | Download | only in Core

Lines Matching refs:row

90     inline const Scalar& coeff(Index row, Index col) const
92 return m_data[col * colStride() + row * rowStride()];
101 inline const Scalar& coeffRef(Index row, Index col) const
103 return this->m_data[col * colStride() + row * rowStride()];
113 inline PacketScalar packet(Index row, Index col) const
116 (m_data + (col * colStride() + row * rowStride()));
201 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
203 return this->m_data[col * colStride() + row * rowStride()];
213 inline void writePacket(Index row, Index col, const PacketScalar& x)
216 (this->m_data + (col * colStride() + row * rowStride()), x);