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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp 78 inUseList(0),
120 while (inUseList) {
121 tHeader* next = inUseList->nextPage;
122 inUseList->~tHeader();
123 delete [] reinterpret_cast<char*>(inUseList);
124 inUseList = next;
169 tAllocState state = { currentPageOffset, inUseList };
194 while (inUseList != page) {
196 inUseList->~tHeader();
198 tHeader* nextInUse = inUseList->nextPage
    [all...]
PoolAlloc.h 204 size_t currentPageOffset; // next offset in top of inUseList to allocate from
206 tHeader* inUseList; // list of all memory currently being used

Completed in 342 milliseconds