Searched refs:toAllocate (Results 1 - 1 of 1) sorted by relevance

/haiku/src/tests/system/kernel/file_corruption/fs/
H A DBlockAllocator.cpp274 uint64 toAllocate = std::min(count, kBlocksPerGroup - groupOffset); local
277 status_t error = _AllocateInGroup(base, searchEnd, toAllocate,
280 fFreeBlocks -= toAllocate;
282 if (allocated == toAllocate) {
296 count -= toAllocate;
297 base += toAllocate;
308 uint64 toAllocate = std::min(remaining, kBlocksPerGroup - groupOffset); local
310 status_t error = _AllocateInGroup(base, searchEnd, toAllocate,
315 fFreeBlocks -= toAllocate;
318 if (allocated < toAllocate)
436 uint32 toAllocate = std::min(remaining, local
[all...]

Completed in 29 milliseconds