OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TAllocation
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp
118
const unsigned char
TAllocation
::guardBlockBeginVal = 0xfb;
119
const unsigned char
TAllocation
::guardBlockEndVal = 0xfe;
120
const unsigned char
TAllocation
::userDataFill = 0xcd;
123
const size_t
TAllocation
::guardBlockSize = 16;
125
const size_t
TAllocation
::guardBlockSize = 0;
131
void
TAllocation
::checkGuardBlock(unsigned char* blockMem, unsigned char val, const char* locText) const
220
size_t allocationSize =
TAllocation
::allocationSize(numBytes);
291
void
TAllocation
::checkAllocList() const
293
for (const
TAllocation
* alloc = this; alloc != 0; alloc = alloc->prevAlloc)
PoolAlloc.h
43
class
TAllocation
{
45
TAllocation
(size_t size, unsigned char* mem,
TAllocation
* prev = 0) :
87
TAllocation
* prevAlloc; // prior allocation in the chain
96
inline static size_t headerSize() { return sizeof(
TAllocation
); }
177
TAllocation
* lastAllocation;
190
new(memory)
TAllocation
(numBytes, memory, block->lastAllocation);
191
block->lastAllocation = reinterpret_cast<
TAllocation
*>(memory);
194
return
TAllocation
::offsetAllocation(memory);
Completed in 26 milliseconds