Home
last modified time | relevance | path

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

/external/deqp-deps/glslang/glslang/MachineIndependent/
DPoolAlloc.cpp75 freeList(nullptr), in TPoolAllocator()
133 while (freeList) { in ~TPoolAllocator()
134 tHeader* next = freeList->nextPage; in ~TPoolAllocator()
135 delete [] reinterpret_cast<char*>(freeList); in ~TPoolAllocator()
136 freeList = next; in ~TPoolAllocator()
214 inUseList->nextPage = freeList; in pop()
215 freeList = inUseList; in pop()
287 if (freeList) { in allocate()
288 memory = freeList; in allocate()
289 freeList = freeList->nextPage; in allocate()
/external/swiftshader/src/OpenGL/compiler/
DPoolAlloc.cpp64 freeList(0), in TPoolAllocator()
124 while (freeList) { in ~TPoolAllocator()
125 tHeader* next = freeList->nextPage; in ~TPoolAllocator()
126 delete [] reinterpret_cast<char*>(freeList); in ~TPoolAllocator()
127 freeList = next; in ~TPoolAllocator()
215 inUseList->nextPage = freeList; in pop()
216 freeList = inUseList; in pop()
302 if (freeList) { in allocate()
303 memory = freeList; in allocate()
304 freeList = freeList->nextPage; in allocate()
DPoolAlloc.h215 tHeader* freeList; // list of popped memory variable
/external/deqp-deps/glslang/glslang/Include/
DPoolAlloc.h237 tHeader* freeList; // list of popped memory in initializeAllocation() variable