Home
last modified time | relevance | path

Searched refs:PoolImpl (Results 1 – 2 of 2) sorted by relevance

/NW4C-2.0.3/sources/libraries/snd/
Dsnd_InstancePool.cpp39 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 …]
/NW4C-2.0.3/include/nw/snd/
Dsnd_InstancePool.h32 class PoolImpl
35 PoolImpl() : m_pNext( NULL ) {} in PoolImpl() function
44 PoolImpl* m_pNext;
53 class MemoryPool : private internal::PoolImpl
130 class InstancePool : private internal::PoolImpl