Searched refs:targetBlocks (Results 1 - 2 of 2) sorted by last modified time

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DExtentStream.cpp160 off_t targetBlocks = numBlocks; local
161 numBlocks = targetBlocks - fNumBlocks;
164 while (fNumBlocks < targetBlocks) {
171 targetBlocks - fNumBlocks, blockGroup, fAllocatedPos,
393 off_t targetBlocks = numBlocks; local
394 numBlocks = fNumBlocks - targetBlocks;
396 while (targetBlocks < fNumBlocks) {
421 while (index >= 0 && targetBlocks < fNumBlocks) {
423 if (last.LogicalBlock() + last.Length() < targetBlocks) {
427 uint16 length = min_c(last.Length(), fNumBlocks - targetBlocks);
[all...]
H A DDataStream.cpp185 off_t targetBlocks = numBlocks; local
192 status = _AddForDirectBlocks(transaction, targetBlocks);
200 ", target size: %" B_PRIdOFF "\n", fNumBlocks, targetBlocks);
202 if (fNumBlocks == targetBlocks)
207 ", target size: %" B_PRIdOFF "\n", fNumBlocks, targetBlocks);
210 status = _AddForIndirectBlock(transaction, targetBlocks);
218 ", target size: %" B_PRIdOFF "\n", fNumBlocks, targetBlocks);
220 if (fNumBlocks == targetBlocks)
225 ", target size: %" B_PRIdOFF "\n", fNumBlocks, targetBlocks);
228 status = _AddForDoubleIndirectBlock(transaction, targetBlocks);
[all...]

Completed in 43 milliseconds