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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.h 49 // This would be cleaner with if (guardBlockSize)..., but that
53 memset(preGuard(), guardBlockBeginVal, guardBlockSize);
55 memset(postGuard(), guardBlockEndVal, guardBlockSize);
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;
PoolAlloc.cpp 144 const size_t TAllocation::guardBlockSize = 16;
146 const size_t TAllocation::guardBlockSize = 0;
154 for (size_t x = 0; x < guardBlockSize; x++) {
227 // guardBlockSize=0 and this all gets optimized away.

Completed in 3691 milliseconds