HomeSort by relevance Sort by last modified time
    Searched defs:TPoolAllocator (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp 37 TPoolAllocator* GetGlobalPoolAllocator()
40 return static_cast<TPoolAllocator*>(GetTLSValue(PoolIndex));
43 void SetGlobalPoolAllocator(TPoolAllocator* poolAllocator)
50 // Implement the functionality of the TPoolAllocator class, which
53 TPoolAllocator::TPoolAllocator(int growthIncrement, int allocationAlignment) :
97 TPoolAllocator::~TPoolAllocator()
153 void TPoolAllocator::push()
172 void TPoolAllocator::pop(
    [all...]
PoolAlloc.h 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);
251 pool_allocator(TPoolAllocator& a) : allocator(&a) {
    [all...]

Completed in 142 milliseconds