Searched refs:blockIndex (Results 1 – 1 of 1) sorted by relevance
44 size_t blockIndex = mNextFreeBlockIndex; in allocate() local45 mNextFreeBlockIndex = mBlocks[blockIndex].mNextFreeBlockIndex; in allocate()48 return new (&mBlocks[blockIndex].mElement) in allocate()56 size_t blockIndex = (elementAddress - baseAddress) / sizeof(MemoryPoolBlock); in deallocate() local58 mBlocks[blockIndex].mElement.~ElementType(); in deallocate()59 mBlocks[blockIndex].mNextFreeBlockIndex = mNextFreeBlockIndex; in deallocate()60 mNextFreeBlockIndex = blockIndex; in deallocate()