Searched refs:mBlocks (Results 1 – 2 of 2) sorted by relevance
33 mBlocks.emplace_back(i + 1); in MemoryPool()45 mNextFreeBlockIndex = mBlocks[blockIndex].mNextFreeBlockIndex; in allocate()48 return new (&mBlocks[blockIndex].mElement) in allocate()55 uintptr_t baseAddress = reinterpret_cast<uintptr_t>(&mBlocks[0].mElement); in deallocate()58 mBlocks[blockIndex].mElement.~ElementType(); in deallocate()59 mBlocks[blockIndex].mNextFreeBlockIndex = mNextFreeBlockIndex; in deallocate()
101 FixedSizeVector<MemoryPoolBlock, kSize> mBlocks; variable