Home
last modified time | relevance | path

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

/system/chre/util/include/chre/util/
Dmemory_pool_impl.h33 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()
Dmemory_pool.h101 FixedSizeVector<MemoryPoolBlock, kSize> mBlocks; variable