nextbit          1834 fs/xfs/libxfs/xfs_ialloc.c 	int				nextbit;
nextbit          1859 fs/xfs/libxfs/xfs_ialloc.c 	nextbit = startidx + 1;
nextbit          1861 fs/xfs/libxfs/xfs_ialloc.c 		nextbit = find_next_zero_bit(holemask, XFS_INOBT_HOLEMASK_BITS,
nextbit          1862 fs/xfs/libxfs/xfs_ialloc.c 					     nextbit);
nextbit          1867 fs/xfs/libxfs/xfs_ialloc.c 		if (nextbit != XFS_INOBT_HOLEMASK_BITS &&
nextbit          1868 fs/xfs/libxfs/xfs_ialloc.c 		    nextbit == endidx + 1) {
nextbit          1869 fs/xfs/libxfs/xfs_ialloc.c 			endidx = nextbit;
nextbit          1890 fs/xfs/libxfs/xfs_ialloc.c 		startidx = endidx = nextbit;
nextbit          1893 fs/xfs/libxfs/xfs_ialloc.c 		nextbit++;
nextbit           472 fs/xfs/libxfs/xfs_ialloc_btree.c 	int				nextbit;
nextbit           496 fs/xfs/libxfs/xfs_ialloc_btree.c 	nextbit = xfs_next_bit(&allocbitmap, 1, 0);
nextbit           497 fs/xfs/libxfs/xfs_ialloc_btree.c 	while (nextbit != -1) {
nextbit           498 fs/xfs/libxfs/xfs_ialloc_btree.c 		ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY));
nextbit           501 fs/xfs/libxfs/xfs_ialloc_btree.c 			   (nextbit * XFS_INODES_PER_HOLEMASK_BIT));
nextbit           503 fs/xfs/libxfs/xfs_ialloc_btree.c 		nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1);
nextbit           519 fs/xfs/libxfs/xfs_ialloc_btree.c 	int				nextbit = 0;
nextbit           526 fs/xfs/libxfs/xfs_ialloc_btree.c 	nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit);
nextbit           527 fs/xfs/libxfs/xfs_ialloc_btree.c 	while (nextbit != -1) {
nextbit           529 fs/xfs/libxfs/xfs_ialloc_btree.c 		nextbit = xfs_next_bit((uint *) &allocbmap, wordsz,
nextbit           530 fs/xfs/libxfs/xfs_ialloc_btree.c 				       nextbit + 1);