Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/compiler/translator/
DPoolAlloc.cpp72 currentPageOffset = pageSize; in TPoolAllocator()
155 tAllocState state = { currentPageOffset, inUseList }; in push()
162 currentPageOffset = pageSize; in push()
178 currentPageOffset = stack.back().offset; in pop()
229 if (allocationSize <= pageSize - currentPageOffset) { in allocate()
233 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset; in allocate()
234 currentPageOffset += allocationSize; in allocate()
235 currentPageOffset = (currentPageOffset + alignmentMask) & ~alignmentMask; in allocate()
258 currentPageOffset = pageSize; // make next allocation come from a new page in allocate()
282 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask; in allocate()
DPoolAlloc.h204 size_t currentPageOffset; // next offset in top of inUseList to allocate from variable