Lines Matching refs:PoolImpl
39 u32 PoolImpl::CreateImpl( void* buffer, size_t size, u32 objSize ) in CreateImpl()
49 PoolImpl *head = reinterpret_cast<PoolImpl*>( ptr ); in CreateImpl()
67 void PoolImpl::DestroyImpl( void* buffer, unsigned long size ) in DestroyImpl()
73 PoolImpl* ptr = m_pNext; in DestroyImpl()
74 PoolImpl* prev = this; in DestroyImpl()
98 int PoolImpl::CountImpl() const in CountImpl()
101 for ( PoolImpl* ptr = m_pNext; ptr != NULL; ptr = ptr->m_pNext ) in CountImpl()
117 void* PoolImpl::AllocImpl() in AllocImpl()
120 PoolImpl* head = m_pNext; in AllocImpl()
134 void PoolImpl::FreeImpl( void* ptr ) in FreeImpl()
136 PoolImpl* head = reinterpret_cast<PoolImpl*>( ptr ); in FreeImpl()