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

  /external/chromium_org/third_party/angle/src/compiler/
PoolAlloc.cpp 56 inUseList(0),
98 while (inUseList) {
99 tHeader* next = inUseList->nextPage;
100 inUseList->~tHeader();
101 delete [] reinterpret_cast<char*>(inUseList);
102 inUseList = next;
154 tAllocState state = { currentPageOffset, inUseList };
179 while (inUseList != page) {
181 inUseList->~tHeader();
183 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 24 milliseconds