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

/darwin-on-arm/xnu/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c3856 u_int32_t curBit; local
3858 /* modulate curBit because it may start in the middle of a word */
3859 for (curBit = curAllocBlock % kBitsPerWord; curBit < kBitsPerWord; curBit++) {
3861 u_int32_t is_allocated = currentWord & (1 << (kBitsWithinWordMask - curBit));
3865 panic("hfs_alloc_scan: curAllocBit %u, curBit (%d), word (0x%x), is_allocated (0x%x) res(0x%x) \n",
3866 curAllocBlock, curBit, currentWord, is_allocated, res);
3870 * If curBit is not allocated, keep track of the start of the free range.

Completed in 78 milliseconds