HomeSort by relevance Sort by last modified time
    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); }
190 TAllocation* lastAllocation;
203 new(memory) TAllocation(numBytes, memory, block->lastAllocation);
204 block->lastAllocation = reinterpret_cast<TAllocation*>(memory);
207 return TAllocation::offsetAllocation(memory);
  /prebuilts/ndk/r16/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 68 milliseconds