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

/darwin-on-arm/xnu/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c3328 u_int32_t min_start = vcb->totalBlocks; local
3334 if (vcb->vcbFreeExt[i].startBlock < min_start) {
3335 min_start = vcb->vcbFreeExt[i].startBlock;
3339 if (min_start != vcb->totalBlocks) {
3340 if (min_start < vcb->nextAllocation) {
3341 vcb->nextAllocation = min_start;
3343 if (min_start < vcb->sparseAllocation) {
3344 vcb->sparseAllocation = min_start;
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsops.c2234 /* If the rb-tree was live, just set min_start to 0 */
2240 u_int32_t min_start = hfsmp->totalBlocks; local
2246 if (hfsmp->vcbFreeExt[i].startBlock < min_start) {
2247 min_start = hfsmp->vcbFreeExt[i].startBlock;
2251 if (min_start < hfsmp->nextAllocation) {
2252 hfsmp->nextAllocation = min_start;

Completed in 30 milliseconds