MCPcopy Create free account
hub / github.com/PX4/eigen / writePacket

Method writePacket

Eigen/src/Core/PlainObjectBase.h:239–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237 /** \internal */
238 template<int StoreMode>
239 EIGEN_STRONG_INLINE void writePacket(Index rowId, Index colId, const PacketScalar& val)
240 {
241 internal::pstoret<Scalar, PacketScalar, StoreMode>
242 (m_storage.data() + (Flags & RowMajorBit
243 ? colId + rowId * m_storage.cols()
244 : rowId + colId * m_storage.rows()), val);
245 }
246
247 /** \internal */
248 template<int StoreMode>

Callers

nothing calls this directly

Calls 3

dataMethod · 0.45
colsMethod · 0.45
rowsMethod · 0.45

Tested by

no test coverage detected