Home
last modified time | relevance | path

Searched refs:GetGlobalPoolAllocator (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DCommon.h36 void* operator new(size_t s) { return GetGlobalPoolAllocator()->allocate(s); } \
40 void* operator new[](size_t s) { return GetGlobalPoolAllocator()->allocate(s); } \
53 void* memory = GetGlobalPoolAllocator()->allocate(sizeof(TString)); in NewPoolTString()
DPoolAlloc.h230 extern TPoolAllocator* GetGlobalPoolAllocator();
258 pool_allocator() : allocator(GetGlobalPoolAllocator()) { } in pool_allocator()
DPoolAlloc.cpp43 TPoolAllocator* GetGlobalPoolAllocator() in GetGlobalPoolAllocator() function
DTypes.h67 void *memory = GetGlobalPoolAllocator()->allocate(sizeof(TFieldList)); in NewPoolTFieldList()