OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TPoolAllocator
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/translator/
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
...]
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
...]
Compiler.h
48
TPoolAllocator
allocator;
Compiler.cpp
53
TScopedPoolAllocator(
TPoolAllocator
* allocator) : mAllocator(allocator)
65
TPoolAllocator
* mAllocator;
Completed in 31 milliseconds