OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TPoolAllocator
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp
56
TPoolAllocator
& GetGlobalPoolAllocator()
63
void SetGlobalPoolAllocator(
TPoolAllocator
* poolAllocator)
71
// Implement the functionality of the
TPoolAllocator
class, which
74
TPoolAllocator
::
TPoolAllocator
(int growthIncrement, int allocationAlignment) :
118
TPoolAllocator
::~
TPoolAllocator
()
167
void
TPoolAllocator
::push()
186
void
TPoolAllocator
::pop()
215
void
TPoolAllocator
::popAll(
[
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);
228
TPoolAllocator
* globalPoolAllocator
[
all
...]
Completed in 43 milliseconds