Lines Matching refs:Allocations
21 assert(Allocations.empty() && "shutdown not called?"); in ~SimpleExecutorMemoryManager()
31 assert(!Allocations.count(MB.base()) && "Duplicate allocation addr"); in allocate()
32 Allocations[MB.base()].Size = Size; in allocate()
62 auto I = Allocations.find(Base.toPtr<void *>()); in finalize()
63 if (I == Allocations.end()) in finalize()
81 auto I = Allocations.find(Base.toPtr<void *>()); in finalize()
84 if (I == Allocations.end()) in finalize()
92 Allocations.erase(I); in finalize()
161 auto I = Allocations.find(Base.toPtr<void *>()); in deallocate()
164 if (I != Allocations.end()) { in deallocate()
166 Allocations.erase(I); in deallocate()
191 AM = std::move(Allocations); in shutdown()