Searched refs:PoolImpl (Results 1 – 2 of 2) sorted by relevance
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()[all …]
32 class PoolImpl35 PoolImpl() : m_pNext( NULL ) {} in PoolImpl() function44 PoolImpl* m_pNext;53 class MemoryPool : private internal::PoolImpl130 class InstancePool : private internal::PoolImpl