• Home
  • Raw
  • Download

Lines Matching refs:m_Allocations

6092         VmaVector< AllocationInfo, VmaStlAllocator<AllocationInfo> > m_Allocations;  member
6098 m_Allocations(pAllocationCallbacks) in BlockInfo()
6105 const size_t defragmentAllocCount = m_Allocations.size(); in CalcHasNonMovableAllocations()
6111 VMA_SORT(m_Allocations.begin(), m_Allocations.end(), AllocationInfoSizeGreater()); in SortAllocationsBySizeDescending()
6116 VMA_SORT(m_Allocations.begin(), m_Allocations.end(), AllocationInfoOffsetGreater()); in SortAllocationsByOffsetDescending()
6375 VmaVector< AllocInfo, VmaStlAllocator<AllocInfo> > m_Allocations; variable
12522 (*it)->m_Allocations.push_back(allocInfo); in AddAllocation()
12571 while(srcAllocIndex >= m_Blocks[srcBlockIndex]->m_Allocations.size()) in DefragmentRound()
12573 if(m_Blocks[srcBlockIndex]->m_Allocations.empty()) in DefragmentRound()
12588 srcAllocIndex = m_Blocks[srcBlockIndex]->m_Allocations.size() - 1; in DefragmentRound()
12593 AllocationInfo& allocInfo = pSrcBlockInfo->m_Allocations[srcAllocIndex]; in DefragmentRound()
12654 VmaVectorRemove(pSrcBlockInfo->m_Allocations, srcAllocIndex); in DefragmentRound()
12719 pBlockInfo->m_Allocations.push_back(allocInfo); in Defragment()
13155 m_Allocations(VmaStlAllocator<AllocInfo>(hAllocator->GetAllocationCallbacks())), in VmaBlockVectorDefragmentationContext()
13168 m_Allocations.push_back(info); in AddAllocation()
13174 m_Allocations.size() == m_pBlockVector->CalcAllocationCount(); in Begin()
13205 for(size_t i = 0, count = m_Allocations.size(); i < count; ++i) in Begin()
13207 m_pAlgorithm->AddAllocation(m_Allocations[i].hAlloc, m_Allocations[i].pChanged); in Begin()