Home
last modified time | relevance | path

Searched refs:colId (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/Core/
DBlock.h222 inline Scalar& coeffRef(Index rowId, Index colId)
225 return m_xpr.coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
229 inline const Scalar& coeffRef(Index rowId, Index colId) const
231 return m_xpr.derived().coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
235 EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index rowId, Index colId) const
237 return m_xpr.coeff(rowId + m_startRow.value(), colId + m_startCol.value());
263 inline PacketScalar packet(Index rowId, Index colId) const
265 … return m_xpr.template packet<Unaligned>(rowId + m_startRow.value(), colId + m_startCol.value());
269 inline void writePacket(Index rowId, Index colId, const PacketScalar& val)
271 …m_xpr.template writePacket<Unaligned>(rowId + m_startRow.value(), colId + m_startCol.value(), val);
DMapBase.h103 inline const Scalar& coeff(Index rowId, Index colId) const in coeff() argument
105 return m_data[colId * colStride() + rowId * rowStride()]; in coeff()
118 inline const Scalar& coeffRef(Index rowId, Index colId) const in coeffRef() argument
120 return this->m_data[colId * colStride() + rowId * rowStride()]; in coeffRef()
133 inline PacketScalar packet(Index rowId, Index colId) const in packet() argument
136 (m_data + (colId * colStride() + rowId * rowStride())); in packet()
DArrayWrapper.h78 inline const Scalar& coeffRef(Index rowId, Index colId) const
80 return m_expression.coeffRef(rowId, colId);
176 inline const Scalar& coeffRef(Index rowId, Index colId) const
178 return m_expression.derived().coeffRef(rowId, colId);
DPlainObjectBase.h160 EIGEN_STRONG_INLINE const Scalar& coeff(Index rowId, Index colId) const
163 return m_storage.data()[colId + rowId * m_storage.cols()];
165 return m_storage.data()[rowId + colId * m_storage.rows()];
183 EIGEN_STRONG_INLINE Scalar& coeffRef(Index rowId, Index colId)
186 return m_storage.data()[colId + rowId * m_storage.cols()];
188 return m_storage.data()[rowId + colId * m_storage.rows()];
204 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index rowId, Index colId) const
207 return m_storage.data()[colId + rowId * m_storage.cols()];
209 return m_storage.data()[rowId + colId * m_storage.rows()];
222 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
[all …]
DVisitor.h207 DenseBase<Derived>::minCoeff(IndexType* rowId, IndexType* colId) const
212 if (colId) *colId = minVisitor.col;
DTranspose.h139 inline const Scalar& coeffRef(Index rowId, Index colId) const
141 return derived().nestedExpression().coeffRef(colId, rowId);