Lines Matching refs:Pool
19 SampleMemoryManager::Pool* SampleMemoryManager::Manage(unsigned int numBytes) in Manage()
23 Pool* res = m_FreePools.back(); in Manage()
30 m_Pools.push_front(Pool(numBytes)); in Manage()
35 void SampleMemoryManager::Allocate(SampleMemoryManager::Pool* pool) in Allocate()
40 void* SampleMemoryManager::GetPointer(SampleMemoryManager::Pool* pool) in GetPointer()
47 for (Pool &pool: m_Pools) in Acquire()
55 for (Pool &pool: m_Pools) in Release()
61 SampleMemoryManager::Pool::Pool(unsigned int numBytes) in Pool() function in sdb::SampleMemoryManager::Pool
66 SampleMemoryManager::Pool::~Pool() in ~Pool()
74 void* SampleMemoryManager::Pool::GetPointer() in GetPointer()
79 void SampleMemoryManager::Pool::Reserve(unsigned int numBytes) in Reserve()
84 void SampleMemoryManager::Pool::Acquire() in Acquire()
89 void SampleMemoryManager::Pool::Release() in Release()