Lines Matching refs:Pool
20 RefMemoryManager::Pool* RefMemoryManager::Manage(unsigned int numBytes) in Manage()
24 Pool* res = m_FreePools.back(); in Manage()
31 m_Pools.push_front(Pool(numBytes)); in Manage()
36 void RefMemoryManager::Allocate(RefMemoryManager::Pool* pool) in Allocate()
42 void* RefMemoryManager::GetPointer(RefMemoryManager::Pool* pool) in GetPointer()
49 for (Pool &pool: m_Pools) in Acquire()
57 for (Pool &pool: m_Pools) in Release()
63 RefMemoryManager::Pool::Pool(unsigned int numBytes) in Pool() function in armnn::RefMemoryManager::Pool
68 RefMemoryManager::Pool::~Pool() in ~Pool()
76 void* RefMemoryManager::Pool::GetPointer() in GetPointer()
82 void RefMemoryManager::Pool::Reserve(unsigned int numBytes) in Reserve()
88 void RefMemoryManager::Pool::Acquire() in Acquire()
94 void RefMemoryManager::Pool::Release() in Release()