Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/compiler/
DPoolAlloc.cpp62 freeList(0), in TPoolAllocator()
116 while (freeList) { in ~TPoolAllocator()
117 tHeader* next = freeList->nextPage; in ~TPoolAllocator()
118 delete [] reinterpret_cast<char*>(freeList); in ~TPoolAllocator()
119 freeList = next; in ~TPoolAllocator()
194 inUseList->nextPage = freeList; in pop()
195 freeList = inUseList; in pop()
274 if (freeList) { in allocate()
275 memory = freeList; in allocate()
276 freeList = freeList->nextPage; in allocate()
DPoolAlloc.h213 tHeader* freeList; // list of popped memory variable