Lines Matching defs:nextbit
561 int nextbit;
585 nextbit = xfs_next_bit(&allocbitmap, 1, 0);
586 while (nextbit != -1) {
587 ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY));
590 (nextbit * XFS_INODES_PER_HOLEMASK_BIT));
592 nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1);
608 int nextbit = 0;
615 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit);
616 while (nextbit != -1) {
618 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz,
619 nextbit + 1);