Home | History | Annotate | Download | only in Core

Lines Matching refs:Index

58     inline Index rows() const { return m_expression.rows(); }
59 inline Index cols() const { return m_expression.cols(); }
60 inline Index outerStride() const { return m_expression.outerStride(); }
61 inline Index innerStride() const { return m_expression.innerStride(); }
66 inline CoeffReturnType coeff(Index rowId, Index colId) const
71 inline Scalar& coeffRef(Index rowId, Index colId)
76 inline const Scalar& coeffRef(Index rowId, Index colId) const
81 inline CoeffReturnType coeff(Index index) const
83 return m_expression.coeff(index);
86 inline Scalar& coeffRef(Index index)
88 return m_expression.const_cast_derived().coeffRef(index);
91 inline const Scalar& coeffRef(Index index) const
93 return m_expression.const_cast_derived().coeffRef(index);
97 inline const PacketScalar packet(Index rowId, Index colId) const
103 inline void writePacket(Index rowId, Index colId, const PacketScalar& val)
109 inline const PacketScalar packet(Index index) const
111 return m_expression.template packet<LoadMode>(index);
115 inline void writePacket(Index index, const PacketScalar& val)
117 m_expression.const_cast_derived().template writePacket<LoadMode>(index, val);
130 * \sa DenseBase::resize(Index) */
131 void resize(Index newSize) { m_expression.const_cast_derived().resize(newSize); }
133 * \sa DenseBase::resize(Index,Index)*/
134 void resize(Index nbRows, Index nbCols) { m_expression.const_cast_derived().resize(nbRows,nbCols); }
183 inline Index rows() const { return m_expression.rows(); }
184 inline Index cols() const { return m_expression.cols(); }
185 inline Index outerStride() const { return m_expression.outerStride(); }
186 inline Index innerStride() const { return m_expression.innerStride(); }
191 inline CoeffReturnType coeff(Index rowId, Index colId) const
196 inline Scalar& coeffRef(Index rowId, Index colId)
201 inline const Scalar& coeffRef(Index rowId, Index colId) const
206 inline CoeffReturnType coeff(Index index) const
208 return m_expression.coeff(index);
211 inline Scalar& coeffRef(Index index)
213 return m_expression.const_cast_derived().coeffRef(index);
216 inline const Scalar& coeffRef(Index index) const
218 return m_expression.const_cast_derived().coeffRef(index);
222 inline const PacketScalar packet(Index rowId, Index colId) const
228 inline void writePacket(Index rowId, Index colId, const PacketScalar& val)
234 inline const PacketScalar packet(Index index) const
236 return m_expression.template packet<LoadMode>(index);
240 inline void writePacket(Index index, const PacketScalar& val)
242 m_expression.const_cast_derived().template writePacket<LoadMode>(index, val);
252 * \sa DenseBase::resize(Index) */
253 void resize(Index newSize) { m_expression.const_cast_derived().resize(newSize); }
255 * \sa DenseBase::resize(Index,Index)*/
256 void resize(Index nbRows, Index nbCols) { m_expression.const_cast_derived().resize(nbRows,nbCols); }