Searched defs:guardBlockSize (Results 1 - 2 of 2) sorted by last modified time

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DPoolAlloc.cpp123 const size_t TAllocation::guardBlockSize = 16; member in class:TAllocation
125 const size_t TAllocation::guardBlockSize = 0; member in class:TAllocation
134 for (size_t x = 0; x < guardBlockSize; x++) {
219 // guardBlockSize=0 and this all gets optimized away.
H A DPoolAlloc.h49 // This would be cleaner with if (guardBlockSize)..., but that
53 memset(preGuard(), guardBlockBeginVal, guardBlockSize); local
55 memset(postGuard(), guardBlockEndVal, guardBlockSize); local
69 return size + 2 * guardBlockSize + headerSize();
74 return m + guardBlockSize + headerSize();
82 unsigned char* data() const { return preGuard() + guardBlockSize; }
94 const static size_t guardBlockSize; member in class:TAllocation

Completed in 113 milliseconds