Searched refs:m_allocations (Results 1 – 2 of 2) sorted by relevance
362 auto i = m_allocations.find(physAddr); in unallocate()363 if (i == m_allocations.end()) { in unallocate()369 m_allocations.erase(physAddr); in unallocate()401 if (!m_allocations.insert({physAddr, {alignedSize, owner}}).second) { in populatePhysAddr()414 stream->putBe32(m_allocations.size()); in save()415 for (const auto& kv: m_allocations) { in save()430 if (!m_allocations.insert({r.first, {size, r.second}}).second) { in load()443 for (const auto& kv: m_allocations) { in clear()447 m_allocations.clear(); in clear()
105 std::unordered_map<uint64_t, std::pair<uint32_t, MemBlock*>> m_allocations; variable