Lines Matching refs:NewBlocks
185 std::vector<uint32_t> NewBlocks;
186 NewBlocks.resize(ReqBlocks);
187 if (auto EC = allocateBlocks(ReqBlocks, NewBlocks))
189 StreamData.push_back(std::make_pair(Size, NewBlocks));
198 uint32_t NewBlocks = bytesToBlocks(Size, BlockSize);
201 if (NewBlocks > OldBlocks) {
202 uint32_t AddedBlocks = NewBlocks - OldBlocks;
210 } else if (OldBlocks > NewBlocks) {
213 uint32_t RemovedBlocks = OldBlocks - NewBlocks;
215 auto RemovedBlockList = CurrentBlocks.drop_front(NewBlocks);