Searched defs:PartitionAllocator (Results 1 – 2 of 2) sorted by relevance
101 struct PartitionAllocator { struct102 void* Alloc(size_t size) { return alloc_.AllocInline(size); } in Alloc()103 void Free(void* data) { alloc_.Free(data); } in Free()104 ~PartitionAllocator() { in ~PartitionAllocator()111 PartitionRoot alloc_{PartitionOptions{}};
94 class PartitionAllocator : public Allocator { class