Lines Matching refs:m_Pools
6717 VmaVector<VmaPool, VmaStlAllocator<VmaPool> > m_Pools; member
14005 m_Pools(VmaStlAllocator<VmaPool>(GetAllocationCallbacks())), in VmaAllocator_T()
14133 VMA_ASSERT(m_Pools.empty()); in ~VmaAllocator_T()
14809 for(size_t poolIndex = 0, poolCount = m_Pools.size(); poolIndex < poolCount; ++poolIndex) in CalculateStats()
14811 m_Pools[poolIndex]->m_BlockVector.AddStats(pStats); in CalculateStats()
15035 VmaVectorInsertSorted<VmaPointerLess>(m_Pools, *pPool); in CreatePool()
15046 bool success = VmaVectorRemoveSorted<VmaPointerLess>(m_Pools, pool); in DestroyPool()
15105 for(size_t poolIndex = 0, poolCount = m_Pools.size(); poolIndex < poolCount; ++poolIndex) in CheckCorruption()
15107 … if(((1u << m_Pools[poolIndex]->m_BlockVector.GetMemoryTypeIndex()) & memoryTypeBits) != 0) in CheckCorruption()
15109 VkResult localRes = m_Pools[poolIndex]->m_BlockVector.CheckCorruption(); in CheckCorruption()
15479 const size_t poolCount = m_Pools.size(); in PrintDetailedMap()
15487 json.ContinueString(m_Pools[poolIndex]->GetId()); in PrintDetailedMap()
15490 m_Pools[poolIndex]->m_BlockVector.PrintDetailedMap(json); in PrintDetailedMap()