Searched defs:PartitionAllocator (Results 1 – 4 of 4) sorted by relevance
102 struct PartitionAllocator { struct103 void* Alloc(size_t size) { return alloc_.AllocInline(size); } in Alloc()104 void Free(void* data) { alloc_.Free(data); } in Free()105 ~PartitionAllocator() { in ~PartitionAllocator()112 PartitionRoot alloc_{PartitionOptions{}};
96 class PartitionAllocator : public Allocator { class