HomeSort by relevance Sort by last modified time
    Searched refs:TAllocation (Results 1 - 4 of 4) sorted by null

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
PoolAlloc.cpp 173 const unsigned char TAllocation::guardBlockBeginVal = 0xfb;
174 const unsigned char TAllocation::guardBlockEndVal = 0xfe;
175 const unsigned char TAllocation::userDataFill = 0xcd;
178 const size_t TAllocation::guardBlockSize = 16;
180 const size_t TAllocation::guardBlockSize = 0;
187 void TAllocation::checkGuardBlock(unsigned char* blockMem, unsigned char val, const char* locText) const
189 void TAllocation::checkGuardBlock(unsigned char*, unsigned char, const char*) const
271 size_t allocationSize = TAllocation::allocationSize(numBytes);
341 void TAllocation::checkAllocList() const
343 for (const TAllocation* alloc = this; alloc != 0; alloc = alloc->prevAlloc
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.cpp 124 const unsigned char TAllocation::guardBlockBeginVal = 0xfb;
125 const unsigned char TAllocation::guardBlockEndVal = 0xfe;
126 const unsigned char TAllocation::userDataFill = 0xcd;
129 const size_t TAllocation::guardBlockSize = 16;
131 const size_t TAllocation::guardBlockSize = 0;
137 void TAllocation::checkGuardBlock(unsigned char* blockMem, unsigned char val, const char* locText) const
226 size_t allocationSize = TAllocation::allocationSize(numBytes);
297 void TAllocation::checkAllocList() const
299 for (const TAllocation* alloc = this; alloc != 0; alloc = alloc->prevAlloc)
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 180 milliseconds