Lines Matching refs:nextbit
646 int nextbit; in xfs_inobt_irec_to_allocmask() local
670 nextbit = xfs_next_bit(&allocbitmap, 1, 0); in xfs_inobt_irec_to_allocmask()
671 while (nextbit != -1) { in xfs_inobt_irec_to_allocmask()
672 ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY)); in xfs_inobt_irec_to_allocmask()
675 (nextbit * XFS_INODES_PER_HOLEMASK_BIT)); in xfs_inobt_irec_to_allocmask()
677 nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1); in xfs_inobt_irec_to_allocmask()
693 int nextbit = 0; in xfs_inobt_rec_check_count() local
700 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit); in xfs_inobt_rec_check_count()
701 while (nextbit != -1) { in xfs_inobt_rec_check_count()
703 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, in xfs_inobt_rec_check_count()
704 nextbit + 1); in xfs_inobt_rec_check_count()