Home | History | Annotate | Download | only in Core

Lines Matching defs:PointerType

48                      PointerType;
126 inline MapBase(PointerType dataPtr) : m_data(dataPtr), m_rows(RowsAtCompileTime), m_cols(ColsAtCompileTime)
132 inline MapBase(PointerType dataPtr, Index vecSize)
143 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols)
163 PointerType m_data;
178 typedef typename Base::PointerType PointerType;
227 explicit inline MapBase(PointerType dataPtr) : Base(dataPtr) {}
228 inline MapBase(PointerType dataPtr, Index vecSize) : Base(dataPtr, vecSize) {}
229 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols) : Base(dataPtr, nbRows, nbCols) {}