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/translator/
PoolAlloc.cpp 57 inUseList(0),
99 while (inUseList) {
100 tHeader* next = inUseList->nextPage;
101 inUseList->~tHeader();
102 delete [] reinterpret_cast<char*>(inUseList);
103 inUseList = next;
155 tAllocState state = { currentPageOffset, inUseList };
180 while (inUseList != page) {
182 inUseList->~tHeader();
184 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 27 milliseconds