OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetGlobalPoolAllocator
(Results
1 - 4
of
4
) sorted by null
/external/swiftshader/src/OpenGL/compiler/
Common.h
36
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));
PoolAlloc.h
236
extern TPoolAllocator*
GetGlobalPoolAllocator
();
264
pool_allocator() : allocator(
GetGlobalPoolAllocator
()) { }
PoolAlloc.cpp
44
TPoolAllocator*
GetGlobalPoolAllocator
()
Types.h
67
void *memory =
GetGlobalPoolAllocator
()->allocate(sizeof(TFieldList));
Completed in 742 milliseconds