Searched refs:PoolImpl (Results 1 – 2 of 2) sorted by relevance
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()[all …]
30 class PoolImpl33 PoolImpl() : m_pNext( NULL ) {} in PoolImpl() function42 PoolImpl* m_pNext;51 class MemoryPool : private internal::PoolImpl128 class InstancePool : private internal::PoolImpl