Home | History | Annotate | Download | only in Core

Lines Matching refs:m_storage

126     DenseStorage<Scalar, Base::MaxSizeAtCompileTime, Base::RowsAtCompileTime, Base::ColsAtCompileTime, Options> m_storage;
135 EIGEN_STRONG_INLINE Index rows() const { return m_storage.rows(); }
136 EIGEN_STRONG_INLINE Index cols() const { return m_storage.cols(); }
141 return m_storage.data()[colId + rowId * m_storage.cols()];
143 return m_storage.data()[rowId + colId * m_storage.rows()];
148 return m_storage.data()[index];
154 return m_storage.data()[colId + rowId * m_storage.cols()];
156 return m_storage.data()[rowId + colId * m_storage.rows()];
161 return m_storage.data()[index];
167 return m_storage.data()[colId + rowId * m_storage.cols()];
169 return m_storage.data()[rowId + colId * m_storage.rows()];
174 return m_storage.data()[index];
182 (m_storage.data() + (Flags & RowMajorBit
183 ? colId + rowId * m_storage.cols()
184 : rowId + colId * m_storage.rows()));
191 return internal::ploadt<PacketScalar, LoadMode>(m_storage.data() + index);
199 (m_storage.data() + (Flags & RowMajorBit
200 ? colId + rowId * m_storage.cols()
201 : rowId + colId * m_storage.rows()), val);
208 internal::pstoret<Scalar, PacketScalar, StoreMode>(m_storage.data() + index, val);
213 { return m_storage.data(); }
217 { return m_storage.data(); }
246 m_storage.resize(size, nbRows, nbCols);
250 m_storage.resize(nbRows*nbCols, nbRows, nbCols);
273 m_storage.resize(size, 1, size);
275 m_storage.resize(size, size, 1);
424 EIGEN_STRONG_INLINE PlainObjectBase() : m_storage()
434 : m_storage(internal::constructor_without_unaligned_array_assert())
441 : m_storage(a_size, nbRows, nbCols)
460 : m_storage(other.derived().rows() * other.derived().cols(), other.derived().rows(), other.derived().cols())
636 m_storage.data()[0] = val0;
637 m_storage.data()[1] = val1;
689 _this.derived().m_storage.conservativeResize(rows*cols,rows,cols);
719 _this.derived().m_storage.conservativeResize(other.size(),other.rows(),other.cols());
750 _this.derived().m_storage.conservativeResize(size,new_rows,new_cols);
761 _this.derived().m_storage.conservativeResize(other.size(),new_rows,new_cols);
782 static_cast<typename MatrixTypeA::Base&>(a).m_storage.swap(static_cast<typename MatrixTypeB::Base&>(b).m_storage);