Lines Matching refs:deIntptr
77 const T& at (deIntptr ndx) const { return *getPtr(ndx); } in at()
78 T& at (deIntptr ndx) { return *getPtr(ndx); } in at()
80 const T& operator[] (deIntptr ndx) const { return at(ndx); } in operator []()
81 T& operator[] (deIntptr ndx) { return at(ndx); } in operator []()
84 Iterator end (void) { return Iterator(this, (deIntptr)m_numElements); } in end()
87 ConstIterator end (void) const { return ConstIterator(this, (deIntptr)m_numElements); } in end()
103 T* getPtr (deIntptr ndx) const;
121 deIntptr getNdx (void) const throw() { return m_ndx; } in getNdx()
124 deIntptr m_ndx;
132 PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx);
154 …PoolArrayConstIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *th… in operator +=()
155 …PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *th… in operator -=()
169 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx);
190 PoolArrayIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; } in operator +=()
191 PoolArrayIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; } in operator -=()
374 inline T* PoolArray<T, Alignment>::getPtr (deIntptr ndx) const in getPtr()
376 DE_ASSERT(inBounds<deIntptr>(ndx, 0, (deIntptr)m_numElements)); in getPtr()
435 …Iterator<T, Alignment>::PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx) in PoolArrayConstIterator()
456 …tIterator<T, Alignment> operator+ (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs) in operator +()
468 …tIterator<T, Alignment> operator- (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs) in operator -()
474 deIntptr operator- (const PoolArrayConstIterator<T, Alignment>& iter, const PoolArrayConstIterator<… in operator -()
489 inline PoolArrayIterator<T, Alignment>::PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr… in PoolArrayIterator()
503 …lArrayIterator<T, Alignment> operator+ (const PoolArrayIterator<T, Alignment>& iter, deIntptr offs) in operator +()
515 PoolArrayIterator<T, Alignment> operator- (const PoolArrayIterator<T, Alignment>& iter, deIntptr of… in operator -()
521 deIntptr operator- (const PoolArrayIterator<T, Alignment>& iter, const PoolArrayIterator<T, Alignme… in operator -()
535 typedef deIntptr difference_type;
545 typedef deIntptr difference_type;