Searched refs:mInUseList (Results 1 – 2 of 2) sorted by relevance
163 mInUseList(nullptr), in PoolAllocator()217 while (mInUseList) in ~PoolAllocator()219 PageHeader *next = mInUseList->nextPage; in ~PoolAllocator()220 mInUseList->~PageHeader(); in ~PoolAllocator()221 delete[] reinterpret_cast<char *>(mInUseList); in ~PoolAllocator()222 mInUseList = next; in ~PoolAllocator()271 AllocState state = {mCurrentPageOffset, mInUseList}; in push()299 while (mInUseList != page) in pop()302 mInUseList->~PageHeader(); in pop()304 PageHeader *nextInUse = mInUseList->nextPage; in pop()[all …]
118 uint8_t *memory = reinterpret_cast<uint8_t *>(mInUseList) + mCurrentPageOffset; in fastAllocate()165 PageHeader *mInUseList; variable