Home | History | Annotate | Download | only in decpp

Lines Matching refs:deIntptr

74 	const T&		at					(deIntptr ndx) const	{ return *getPtr(ndx);		}
75 T& at (deIntptr ndx) { return *getPtr(ndx); }
77 const T& operator[] (deIntptr ndx) const { return at(ndx); }
78 T& operator[] (deIntptr ndx) { return at(ndx); }
81 Iterator end (void) { return Iterator(this, (deIntptr)m_numElements); }
84 ConstIterator end (void) const { return ConstIterator(this, (deIntptr)m_numElements); }
94 T* getPtr (deIntptr ndx) const;
112 deIntptr getNdx (void) const throw() { return m_ndx; }
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 *this; }
146 PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; }
160 PoolArrayIterator (PoolArray<T, Alignment>* array, deIntptr ndx);
181 PoolArrayIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; }
182 PoolArrayIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; }
365 inline T* PoolArray<T, Alignment>::getPtr (deIntptr ndx) const
367 DE_ASSERT(inBounds<deIntptr>(ndx, 0, (deIntptr)m_numElements));
426 inline PoolArrayConstIterator<T, Alignment>::PoolArrayConstIterator (const PoolArray<T, Alignment>* array, deIntptr ndx)
447 inline PoolArrayConstIterator<T, Alignment> operator+ (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs)
459 PoolArrayConstIterator<T, Alignment> operator- (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs)
465 deIntptr operator- (const PoolArrayConstIterator<T, Alignment>& iter, const PoolArrayConstIterator<T, Alignment>& other)
480 deIntptr ndx)
494 inline PoolArrayIterator<T, Alignment> operator+ (const PoolArrayIterator<T, Alignment>& iter, deIntptr offs)
506 PoolArrayIterator<T, Alignment> operator- (const PoolArrayIterator<T, Alignment>& iter, deIntptr offs)
512 deIntptr operator- (const PoolArrayIterator<T, Alignment>& iter, const PoolArrayIterator<T, Alignment>& other)
526 typedef deIntptr difference_type;
536 typedef deIntptr difference_type;