OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:guardBlockSize
(Results
1 - 4
of
4
) sorted by null
/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
129
const size_t TAllocation::
guardBlockSize
= 16;
131
const size_t TAllocation::
guardBlockSize
= 0;
140
for (size_t x = 0; x <
guardBlockSize
; x++) {
225
//
guardBlockSize
=0 and this all gets optimized away.
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/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
;
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
PoolAlloc.cpp
178
const size_t TAllocation::
guardBlockSize
= 16;
180
const size_t TAllocation::
guardBlockSize
= 0;
193
for (size_t x = 0; x <
guardBlockSize
; x++) {
205
assert(
guardBlockSize
== 0);
270
//
guardBlockSize
=0 and this all gets optimized away.
Completed in 209 milliseconds