Home | History | Annotate | Download | only in Core

Lines Matching full:colid

138     EIGEN_STRONG_INLINE const Scalar& coeff(Index rowId, Index colId) const
141 return m_storage.data()[colId + rowId * m_storage.cols()];
143 return m_storage.data()[rowId + colId * m_storage.rows()];
151 EIGEN_STRONG_INLINE Scalar& coeffRef(Index rowId, Index colId)
154 return m_storage.data()[colId + rowId * m_storage.cols()];
156 return m_storage.data()[rowId + colId * m_storage.rows()];
164 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index rowId, Index colId) const
167 return m_storage.data()[colId + rowId * m_storage.cols()];
169 return m_storage.data()[rowId + colId * m_storage.rows()];
179 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
183 ? colId + rowId * m_storage.cols()
184 : rowId + colId * m_storage.rows()));
196 EIGEN_STRONG_INLINE void writePacket(Index rowId, Index colId, const PacketScalar& val)
200 ? colId + rowId * m_storage.cols()
201 : rowId + colId * m_storage.rows()), val);