Searched defs:guardBlockSize (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.cpp144 const size_t TAllocation::guardBlockSize = 16; member in class:TAllocation
146 const size_t TAllocation::guardBlockSize = 0; member in class:TAllocation
154 for (size_t x = 0; x < guardBlockSize; x++) {
227 // 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 77 milliseconds