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

  /external/deqp-deps/glslang/glslang/Include/
PoolAlloc.h 81 // This would be cleaner with if (guardBlockSize)..., but that
85 memset(preGuard(), guardBlockBeginVal, guardBlockSize);
87 memset(postGuard(), guardBlockEndVal, guardBlockSize);
101 return size + 2 * guardBlockSize + headerSize();
106 return m + guardBlockSize + headerSize();
114 unsigned char* data() const { return preGuard() + guardBlockSize; }
125 const static size_t guardBlockSize;
  /external/deqp-deps/glslang/glslang/MachineIndependent/
PoolAlloc.cpp 145 const size_t TAllocation::guardBlockSize = 16;
147 const size_t TAllocation::guardBlockSize = 0;
160 for (size_t x = 0; x < guardBlockSize; x++) {
172 assert(guardBlockSize == 0);
239 // guardBlockSize=0 and this all gets optimized away.
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.h 57 // This would be cleaner with if (guardBlockSize)..., but that
61 memset(preGuard(), guardBlockBeginVal, guardBlockSize);
63 memset(postGuard(), guardBlockEndVal, guardBlockSize);
77 return size + 2 * guardBlockSize + headerSize();
82 return m + guardBlockSize + headerSize();
90 unsigned char* data() const { return preGuard() + guardBlockSize; }
102 const static size_t guardBlockSize;
PoolAlloc.cpp 145 const size_t TAllocation::guardBlockSize = 16;
147 const size_t TAllocation::guardBlockSize = 0;
156 for (size_t x = 0; x < guardBlockSize; x++) {
253 // guardBlockSize=0 and this all gets optimized away.

Completed in 302 milliseconds