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

/haiku/src/tests/system/kernel/file_corruption/fs/
H A DBlockAllocator.cpp248 \param searchEnd A hint for the method where to stop searching for free
259 BlockAllocator::_Allocate(uint64 base, uint64 searchEnd, uint64 count, argument
263 ASSERT(searchEnd <= fTotalBlocks);
265 if (base >= searchEnd || fFreeBlocks == 0)
273 while (count > 0 && base < searchEnd) {
277 status_t error = _AllocateInGroup(base, searchEnd, toAllocate,
288 searchEnd - (uint32)*_allocatedBase % kBlocksPerGroup);
307 while (remaining > 0 && base < searchEnd) {
310 status_t error = _AllocateInGroup(base, searchEnd, toAllocate,
344 \param searchEnd
355 _AllocateInGroup(uint64 base, uint64 searchEnd, uint32 count, Transaction& transaction, uint64* _allocatedBase, uint32& _allocatedCount) argument
[all...]
H A DBlockAllocator.h41 status_t _Allocate(uint64 base, uint64 searchEnd,
45 status_t _AllocateInGroup(uint64 base, uint64 searchEnd,
/haiku/src/system/kernel/vm/
H A DVMUserAddressSpace.cpp169 addr_t searchBase, searchEnd; local
175 searchEnd = (addr_t)addressRestrictions->address + (size - 1);
181 searchEnd = fEndAddress;
189 searchEnd = fEndAddress;
196 status = _InsertAreaSlot(searchBase, size, searchEnd,

Completed in 47 milliseconds