Home | History | Annotate | Download | only in Core

Lines Matching defs:m_data

88     inline const Scalar* data() const { return m_data; }
92 return m_data[colId * colStride() + rowId * rowStride()];
98 return m_data[index * innerStride()];
103 return this->m_data[colId * colStride() + rowId * rowStride()];
109 return this->m_data[index * innerStride()];
116 (m_data + (colId * colStride() + rowId * rowStride()));
123 return internal::ploadt<PacketScalar, LoadMode>(m_data + index * innerStride());
126 inline MapBase(PointerType dataPtr) : m_data(dataPtr), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
133 : m_data(dataPtr),
144 : m_data(dataPtr), m_rows(nbRows), m_cols(nbCols)
159 eigen_assert(EIGEN_IMPLIES(internal::traits<Derived>::Flags&AlignedBit, (size_t(m_data) % 16) == 0)
163 PointerType m_data;
198 inline const Scalar* data() const { return this->m_data; }
199 inline ScalarWithConstIfNotLvalue* data() { return this->m_data; } // no const-cast here so non-const-correct code will give a compile error
203 return this->m_data[col * colStride() + row * rowStride()];
209 return this->m_data[index * innerStride()];
216 (this->m_data + (col * colStride() + row * rowStride()), val);
224 (this->m_data + index * innerStride(), val);