Lines Matching refs:allocCount
6213 const uint32_t allocCount = (uint32_t)m_AllocationList.GetCount(); in AddStatistics() local
6214 inoutStats.blockCount += allocCount; in AddStatistics()
6215 inoutStats.allocationCount += allocCount; in AddStatistics()
6574 uint16_t allocCount; member
6644 if (m_RegionInfo[startPage].allocCount > 0 && in CheckConflictAndAlignUp()
6654 m_RegionInfo[endPage].allocCount > 0 && in CheckConflictAndAlignUp()
6681 --m_RegionInfo[startPage].allocCount; in FreePages()
6682 if (m_RegionInfo[startPage].allocCount == 0) in FreePages()
6687 --m_RegionInfo[endPage].allocCount; in FreePages()
6688 if (m_RegionInfo[endPage].allocCount == 0) in FreePages()
6719 VMA_VALIDATE(m_RegionInfo[start].allocCount > 0); in Validate()
6725 VMA_VALIDATE(m_RegionInfo[end].allocCount > 0); in Validate()
6740 VMA_VALIDATE(ctx.pageAllocs[page] == m_RegionInfo[page].allocCount); in FinishValidation()
6756 …if (page.allocCount == 0 || (page.allocCount > 0 && page.allocType == VMA_SUBALLOCATION_TYPE_FREE)) in AllocPage()
6759 ++page.allocCount; in AllocPage()
10141 size_t allocCount = 0; in Validate() local
10198 ++allocCount; in Validate()
10227 VMA_VALIDATE(allocCount == m_AllocCount); in Validate()
13894 size_t allocCount = 0; in UpdateVectorStatistics() local
13903 allocCount += metadata->GetAllocationCount(); in UpdateVectorStatistics()
13909 state.avgAllocSize = (state.avgAllocSize - state.avgFreeSize) / allocCount; in UpdateVectorStatistics()