Home
last modified time | relevance | path

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

/external/deqp-deps/glslang/glslang/MachineIndependent/
DPoolAlloc.cpp76 inUseList(nullptr), in TPoolAllocator()
119 while (inUseList) { in ~TPoolAllocator()
120 tHeader* next = inUseList->nextPage; in ~TPoolAllocator()
121 inUseList->~tHeader(); in ~TPoolAllocator()
122 delete [] reinterpret_cast<char*>(inUseList); in ~TPoolAllocator()
123 inUseList = next; in ~TPoolAllocator()
178 tAllocState state = { currentPageOffset, inUseList }; in push()
203 while (inUseList != page) { in pop()
204 tHeader* nextInUse = inUseList->nextPage; in pop()
205 size_t pageCount = inUseList->pageCount; in pop()
[all …]
/external/swiftshader/src/OpenGL/compiler/
DPoolAlloc.cpp65 inUseList(0), in TPoolAllocator()
113 while (inUseList) { in ~TPoolAllocator()
114 tHeader* next = inUseList->nextPage; in ~TPoolAllocator()
115 inUseList->~tHeader(); in ~TPoolAllocator()
116 delete [] reinterpret_cast<char*>(inUseList); in ~TPoolAllocator()
117 inUseList = next; in ~TPoolAllocator()
178 tAllocState state = { currentPageOffset, inUseList }; in push()
207 while (inUseList != page) { in pop()
209 inUseList->~tHeader(); in pop()
211 tHeader* nextInUse = inUseList->nextPage; in pop()
[all …]
DPoolAlloc.h216 tHeader* inUseList; // list of all memory currently being used variable
/external/deqp-deps/glslang/glslang/Include/
DPoolAlloc.h238 tHeader* inUseList; // list of all memory currently being used in initializeAllocation() variable