Searched defs:colId (Results 1 - 5 of 5) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DSwap.h52 inline Scalar& coeffRef(Index rowId, Index colId) argument
54 return m_expression.const_cast_derived().coeffRef(rowId, colId);
62 inline Scalar& coeffRef(Index rowId, Index colId) const
64 return m_expression.coeffRef(rowId, colId);
73 void copyCoeff(Index rowId, Index colId, const DenseBase<OtherDerived>& other) argument
77 && colId >= 0 && colId < cols());
78 Scalar tmp = m_expression.coeff(rowId, colId);
79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colId);
94 copyPacket(Index rowId, Index colId, const DenseBase<OtherDerived>& other) argument
[all...]
H A DArrayWrapper.h61 inline CoeffReturnType coeff(Index rowId, Index colId) const
63 return m_expression.coeff(rowId, colId);
66 inline Scalar& coeffRef(Index rowId, Index colId) argument
68 return m_expression.const_cast_derived().coeffRef(rowId, colId);
71 inline const Scalar& coeffRef(Index rowId, Index colId) const
73 return m_expression.const_cast_derived().coeffRef(rowId, colId);
92 inline const PacketScalar packet(Index rowId, Index colId) const
94 return m_expression.template packet<LoadMode>(rowId, colId);
98 inline void writePacket(Index rowId, Index colId, const PacketScalar& val) argument
100 m_expression.const_cast_derived().template writePacket<LoadMode>(rowId, colId, va
186 coeffRef(Index rowId, Index colId) argument
218 writePacket(Index rowId, Index colId, const PacketScalar& val) argument
[all...]
H A DBlock.h210 inline Scalar& coeffRef(Index rowId, Index colId) argument
214 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
217 inline const Scalar& coeffRef(Index rowId, Index colId) const
220 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
223 EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index rowId, Index colId) const
225 return m_xpr.coeff(rowId + m_startRow.value(), colId + m_startCol.value());
251 inline PacketScalar packet(Index rowId, Index colId) const
254 (rowId + m_startRow.value(), colId + m_startCol.value());
258 inline void writePacket(Index rowId, Index colId, const PacketScalar& val) argument
261 (rowId + m_startRow.value(), colId
[all...]
H A DTranspose.h121 inline ScalarWithConstIfNotLvalue& coeffRef(Index rowId, Index colId) argument
124 return derived().nestedExpression().const_cast_derived().coeffRef(colId, rowId);
133 inline const Scalar& coeffRef(Index rowId, Index colId) const
135 return derived().nestedExpression().coeffRef(colId, rowId);
143 inline CoeffReturnType coeff(Index rowId, Index colId) const
145 return derived().nestedExpression().coeff(colId, rowId);
154 inline const PacketScalar packet(Index rowId, Index colId) const
156 return derived().nestedExpression().template packet<LoadMode>(colId, rowId);
160 inline void writePacket(Index rowId, Index colId, const PacketScalar& x) argument
162 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(colId, rowI
[all...]
H A DPlainObjectBase.h138 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) argument
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) cons
196 writePacket(Index rowId, Index colId, const PacketScalar& val) argument
[all...]

Completed in 930 milliseconds