OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numBytesToAlloc
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/src/OpenGL/compiler/
PoolAlloc.cpp
251
size_t
numBytesToAlloc
= allocationSize + headerSkip;
253
if (
numBytesToAlloc
< allocationSize)
256
tHeader* memory = reinterpret_cast<tHeader*>(::new char[
numBytesToAlloc
]);
261
new(memory) tHeader(inUseList, (
numBytesToAlloc
+ pageSize - 1) / pageSize);
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
PoolAlloc.cpp
299
size_t
numBytesToAlloc
= allocationSize + headerSkip;
300
tHeader* memory = reinterpret_cast<tHeader*>(::new char[
numBytesToAlloc
]);
305
new(memory) tHeader(inUseList, (
numBytesToAlloc
+ pageSize - 1) / pageSize);
Completed in 50 milliseconds