Home
last modified time | relevance | path

Searched refs:numBytesToAlloc (Results 1 – 1 of 1) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DPoolAlloc.cpp251 size_t numBytesToAlloc = allocationSize + headerSkip; in allocate() local
253 if (numBytesToAlloc < allocationSize) in allocate()
256 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]); in allocate()
261 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize); in allocate()