Lines Matching defs:nextbit
632 int nextbit;
656 nextbit = xfs_next_bit(&allocbitmap, 1, 0);
657 while (nextbit != -1) {
658 ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY));
661 (nextbit * XFS_INODES_PER_HOLEMASK_BIT));
663 nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1);
679 int nextbit = 0;
686 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit);
687 while (nextbit != -1) {
689 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz,
690 nextbit + 1);