Home | History | Annotate | Download | only in compiler

Lines Matching defs:TPoolAllocator

116 class TPoolAllocator {
118 TPoolAllocator(int growthIncrement = 8*1024, int allocationAlignment = 16);
123 ~TPoolAllocator();
212 TPoolAllocator& operator=(const TPoolAllocator&); // dont allow assignment operator
213 TPoolAllocator(const TPoolAllocator&); // dont allow default copy constructor
222 extern TPoolAllocator& GetGlobalPoolAllocator();
223 extern void SetGlobalPoolAllocator(TPoolAllocator* poolAllocator);
228 TPoolAllocator* globalPoolAllocator;
257 pool_allocator(TPoolAllocator& a) : allocator(a) { }
293 void setAllocator(TPoolAllocator* a) { allocator = *a; }
294 TPoolAllocator& getAllocator() const { return allocator; }
297 TPoolAllocator& allocator;