Home
last modified time | relevance | path

Searched refs:m_Suballocations (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/vulkan-validation-layers/layers/
H A Dvk_mem_alloc.h5299 virtual size_t GetAllocationCount() const { return m_Suballocations.size() - m_FreeCount; } in GetAllocationCount()
5357 VmaSuballocationList m_Suballocations; variable
7637 m_Suballocations(VmaStlAllocator<VmaSuballocation>(hAllocator->GetAllocationCallbacks())), in VmaBlockMetadata_Generic()
7660 m_Suballocations.push_back(suballoc); in Init()
7661 VmaSuballocationList::iterator suballocItem = m_Suballocations.end(); in Init()
7668 VMA_VALIDATE(!m_Suballocations.empty()); in Validate()
7682 for(VmaSuballocationList::const_iterator suballocItem = m_Suballocations.cbegin(); in Validate()
7683 suballocItem != m_Suballocations.cend(); in Validate()
7762 return (m_Suballocations.size() == 1) && (m_FreeCount == 1); in IsEmpty()
7769 const uint32_t rangeCount = (uint32_t)m_Suballocations.size(); in CalcAllocationStatInfo()
[all …]
/aosp_15_r20/external/angle/third_party/vulkan_memory_allocator/include/
H A Dvk_mem_alloc.h6801 size_t GetAllocationCount() const override { return m_Suballocations.size() - m_FreeCount; }
6803 bool IsEmpty() const override { return (m_Suballocations.size() == 1) && (m_FreeCount == 1); }
6843 VmaSuballocationList m_Suballocations;
6881 m_Suballocations(VmaStlAllocator<VmaSuballocation>(pAllocationCallbacks)),
6896 m_Suballocations.push_back(suballoc);
6897 m_FreeSuballocationsBySize.push_back(m_Suballocations.begin());
6902 VMA_VALIDATE(!m_Suballocations.empty());
6918 for (const auto& subAlloc : m_Suballocations)
6986 const uint32_t rangeCount = (uint32_t)m_Suballocations.size();
6990 for (const auto& suballoc : m_Suballocations)
[all …]
/aosp_15_r20/external/skia/vma_android/include/
H A Dvk_mem_alloc.h6738 size_t GetAllocationCount() const override { return m_Suballocations.size() - m_FreeCount; }
6740 bool IsEmpty() const override { return (m_Suballocations.size() == 1) && (m_FreeCount == 1); }
6780 VmaSuballocationList m_Suballocations;
6818 m_Suballocations(VmaStlAllocator<VmaSuballocation>(pAllocationCallbacks)),
6833 m_Suballocations.push_back(suballoc);
6834 m_FreeSuballocationsBySize.push_back(m_Suballocations.begin());
6839 VMA_VALIDATE(!m_Suballocations.empty());
6855 for (const auto& subAlloc : m_Suballocations)
6923 const uint32_t rangeCount = (uint32_t)m_Suballocations.size();
6927 for (const auto& suballoc : m_Suballocations)
[all …]