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

/haiku/src/system/kernel/debug/
H A Ddebug_heap.cpp45 fFirstFree = 0;
97 uint32 index = fFirstFree;
172 uint32 next = fFirstFree;
189 fFirstFree = index;
205 fFirstFree = next;
221 uint32 fFirstFree; member in struct:DebugAllocPool
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBlockAllocator.cpp214 int32 fFirstFree; member in class:AllocationGroup
346 fFirstFree(-1),
359 if (fFirstFree == -1)
360 fFirstFree = start;
385 // Note, the fFirstFree block doesn't have to be really free
386 if (start == fFirstFree)
387 fFirstFree = start + length;
454 if (fFirstFree > start)
455 fFirstFree = start;
590 fGroups[i].fFirstFree
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBlockAllocator.cpp82 uint32 fFirstFree; member in class:AllocationBlockGroup
103 fFirstFree(0),
166 fPreviousFirstFree = fFirstFree;
256 if (fFirstFree == fLargestStart)
257 fFirstFree += length;
327 if (fFirstFree > start)
328 fFirstFree = start;
409 fFirstFree = start;
562 fPreviousFirstFree = fFirstFree;
569 fFirstFree
[all...]

Completed in 89 milliseconds