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

  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.cpp 43 TPoolAllocator* GetGlobalPoolAllocator()
46 return static_cast<TPoolAllocator*>(OS_GetTLSValue(PoolIndex));
49 void SetGlobalPoolAllocator(TPoolAllocator* poolAllocator)
56 // Implement the functionality of the TPoolAllocator class, which
59 TPoolAllocator::TPoolAllocator(int growthIncrement, int allocationAlignment) :
103 TPoolAllocator::~TPoolAllocator()
159 void TPoolAllocator::push()
178 void TPoolAllocator::pop(
    [all...]
PoolAlloc.h 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) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
PoolAlloc.cpp 51 TPoolAllocator *threadPoolAllocator = new TPoolAllocator();
87 TPoolAllocator& GetThreadPoolAllocator()
94 void SetThreadPoolAllocator(TPoolAllocator& poolAllocator)
102 // Implement the functionality of the TPoolAllocator class, which
105 TPoolAllocator::TPoolAllocator(int growthIncrement, int allocationAlignment) :
150 TPoolAllocator::~TPoolAllocator()
210 void TPoolAllocator::push(
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
PoolAlloc.h 147 class TPoolAllocator {
149 TPoolAllocator(int growthIncrement = 8*1024, int allocationAlignment = 16);
154 ~TPoolAllocator();
244 TPoolAllocator& operator=(const TPoolAllocator&); // don't allow assignment operator
245 TPoolAllocator(const TPoolAllocator&); // don't allow default copy constructor
254 typedef TPoolAllocator* PoolAllocatorPointer;
255 extern TPoolAllocator& GetThreadPoolAllocator();
259 TPoolAllocator* threadPoolAllocator
    [all...]

Completed in 536 milliseconds