Lines Matching refs:deIntptr
74 const T& at (deIntptr ndx) const { return *getPtr(ndx); } in at()
75 T& at (deIntptr ndx) { return *getPtr(ndx); } in at()
77 const T& operator[] (deIntptr ndx) const { return at(ndx); } in operator []()
78 T& operator[] (deIntptr ndx) { return at(ndx); } in operator []()
81 Iterator end (void) { return Iterator(this, (deIntptr)m_numElements); } in end()
84 ConstIterator end (void) const { return ConstIterator(this, (deIntptr)m_numElements); } in end()
94 T* getPtr (deIntptr ndx) const;
112 deIntptr getNdx (void) const throw() { return m_ndx; } in getNdx()
115 deIntptr m_ndx;
123 PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx);
145 …PoolArrayConstIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *th… in operator +=()
146 …PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *th… in operator -=()
160 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx);
181 PoolArrayIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; } in operator +=()
182 PoolArrayIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; } in operator -=()
365 inline T* PoolArray<T, Alignment>::getPtr (deIntptr ndx) const in getPtr()
367 DE_ASSERT(inBounds<deIntptr>(ndx, 0, (deIntptr)m_numElements)); in getPtr()
426 …Iterator<T, Alignment>::PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx) in PoolArrayConstIterator()
447 …tIterator<T, Alignment> operator+ (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs) in operator +()
459 …tIterator<T, Alignment> operator- (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs) in operator -()
465 deIntptr operator- (const PoolArrayConstIterator<T, Alignment>& iter, const PoolArrayConstIterator<… in operator -()
480 inline PoolArrayIterator<T, Alignment>::PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr… in PoolArrayIterator()
494 …lArrayIterator<T, Alignment> operator+ (const PoolArrayIterator<T, Alignment>& iter, deIntptr offs) in operator +()
506 PoolArrayIterator<T, Alignment> operator- (const PoolArrayIterator<T, Alignment>& iter, deIntptr of… in operator -()
512 deIntptr operator- (const PoolArrayIterator<T, Alignment>& iter, const PoolArrayIterator<T, Alignme… in operator -()
526 typedef deIntptr difference_type;
536 typedef deIntptr difference_type;