Lines Matching refs:PoolImpl
37 u32 PoolImpl::CreateImpl( void* buffer, size_t size, u32 objSize ) in CreateImpl()
47 PoolImpl *head = reinterpret_cast<PoolImpl*>( ptr ); in CreateImpl()
65 void PoolImpl::DestroyImpl( void* buffer, unsigned long size ) in DestroyImpl()
71 PoolImpl* ptr = m_pNext; in DestroyImpl()
72 PoolImpl* prev = this; in DestroyImpl()
96 int PoolImpl::CountImpl() const in CountImpl()
99 for ( PoolImpl* ptr = m_pNext; ptr != NULL; ptr = ptr->m_pNext ) in CountImpl()
115 void* PoolImpl::AllocImpl() in AllocImpl()
118 PoolImpl* head = m_pNext; in AllocImpl()
132 void PoolImpl::FreeImpl( void* ptr ) in FreeImpl()
134 PoolImpl* head = reinterpret_cast<PoolImpl*>( ptr ); in FreeImpl()