OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TAllocation
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/src/OpenGL/compiler/
PoolAlloc.h
51
class
TAllocation
{
53
TAllocation
(size_t size, unsigned char* mem,
TAllocation
* prev = 0) :
95
TAllocation
* prevAlloc; // prior allocation in the chain
104
inline static size_t headerSize() { return sizeof(
TAllocation
); }
185
TAllocation
* lastAllocation;
198
new(memory)
TAllocation
(numBytes, memory, block->lastAllocation);
199
block->lastAllocation = reinterpret_cast<
TAllocation
*>(memory);
202
return
TAllocation
::offsetAllocation(memory);
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
PoolAlloc.h
75
class
TAllocation
{
77
TAllocation
(size_t size, unsigned char* mem,
TAllocation
* prev = 0) :
119
TAllocation
* prevAlloc; // prior allocation in the chain
127
inline static size_t headerSize() { return sizeof(
TAllocation
); }
204
TAllocation
* lastAllocation;
221
new(memory)
TAllocation
(numBytes, memory, block->lastAllocation);
222
block->lastAllocation = reinterpret_cast<
TAllocation
*>(memory);
226
return
TAllocation
::offsetAllocation(memory);
Completed in 93 milliseconds