Lines Matching refs:TPoolAllocator
124 class TPoolAllocator {
126 TPoolAllocator(int growthIncrement = 8*1024, int allocationAlignment = 16);
131 ~TPoolAllocator();
220 TPoolAllocator& operator=(const TPoolAllocator&); // dont allow assignment operator
221 TPoolAllocator(const TPoolAllocator&); // dont allow default copy constructor
230 extern TPoolAllocator* GetGlobalPoolAllocator();
231 extern void SetGlobalPoolAllocator(TPoolAllocator* poolAllocator);
259 pool_allocator(TPoolAllocator& a) : allocator(&a) { } in pool_allocator()
301 void setAllocator(TPoolAllocator *a) { allocator = a; } in setAllocator()
302 TPoolAllocator& getAllocator() const { return *allocator; } in getAllocator()
305 TPoolAllocator *allocator;