Symbol: nextfree
games/backgammon/backgammon/move.c
256
now = nextfree(); /* get free BOARD */
games/backgammon/backgammon/move.c
94
static struct BOARD *nextfree(void);
sbin/fsck_lfs/pass6.c
210
ino_t nextfree;
sbin/fsck_lfs/pass6.c
225
LFS_GET_HEADFREE(fs, cip, cbp, &nextfree);
sbin/fsck_lfs/pass6.c
226
lfs_if_setnextfree(fs, ifp, nextfree);
sbin/fsck_lfs/pass6.c
470
ino_t ino, nextfree, oldhead;
sbin/fsck_lfs/pass6.c
488
nextfree = lfs_if_getnextfree(fs, ifp);
sbin/fsck_lfs/pass6.c
495
LFS_PUT_HEADFREE(fs, cip, cbp, nextfree);
sbin/fsck_lfs/pass6.c
497
if (nextfree == 0) {
sbin/fsck_lfs/pass6.c
507
lfs_if_setnextfree(fs, ifp, nextfree);
sbin/fsck_lfs/pass6.c
509
if (nextfree == 0)
sys/ufs/lfs/lfs_accessors.h
902
LFS_DEF_IF_ACCESSOR(uint64_t, uint32_t, nextfree)
sys/ufs/lfs/lfs_alloc.c
1020
ino_t i, headino, maxino, thisino, tailino, nextfree;
sys/ufs/lfs/lfs_alloc.c
1090
nextfree = lfs_if_getnextfree(fs, ifp);
sys/ufs/lfs/lfs_alloc.c
1092
if (nextfree == LFS_UNUSED_INUM)
sys/ufs/lfs/lfs_alloc.c
1094
thisino = nextfree;
sys/ufs/lfs/lfs_alloc.c
399
ino_t nextfree = 0, maxino, count; /* XXX: gcc */
sys/ufs/lfs/lfs_alloc.c
411
nextfree = lfs_if_getnextfree(fs, ifp);
sys/ufs/lfs/lfs_alloc.c
413
if (nextfree == ino ||
sys/ufs/lfs/lfs_alloc.c
414
nextfree == LFS_UNUSED_INUM)
sys/ufs/lfs/lfs_alloc.c
417
thisino = nextfree;
sys/ufs/lfs/lfs_alloc.c
427
if (nextfree == LFS_UNUSED_INUM) {
sys/ufs/lfs/lfs_alloc.c
664
ino_t nextfree;
sys/ufs/lfs/lfs_alloc.c
667
LFS_GET_HEADFREE(fs, cip, cbp, &nextfree);
sys/ufs/lfs/lfs_alloc.c
668
lfs_if_setnextfree(fs, ifp, nextfree);
sys/ufs/lfs/lfs_alloc.c
693
ino_t nextfree;
sys/ufs/lfs/lfs_alloc.c
702
LFS_GET_HEADFREE(fs, cip, cbp, &nextfree);
sys/ufs/lfs/lfs_alloc.c
703
lfs_if_setnextfree(fs, ifp, nextfree);
sys/ufs/lfs/lfs_alloc.c
706
(long long)nextfree, (long long)ino));
sys/ufs/lfs/lfs_alloc.c
935
ino_t nextfree;
sys/ufs/lfs/lfs_alloc.c
970
nextfree = lfs_if_getnextfree(fs, ifp);
sys/ufs/lfs/lfs_alloc.c
971
if (nextfree == LFS_ORPHAN_NEXTFREE(fs)) {
sys/ufs/lfs/lfs_alloc.c
976
KASSERT(nextfree == LFS_UNUSED_INUM);
usr.sbin/dumplfs/dumplfs.c
131
ino_t nextfree;
usr.sbin/dumplfs/dumplfs.c
135
nextfree = lfs_if_getnextfree(lfsp, ip);
usr.sbin/dumplfs/dumplfs.c
139
(uintmax_t)nextfree);
usr.sbin/dumplfs/dumplfs.c
143
nextfree == LFS_ORPHAN_NEXTFREE(lfsp) ? "orphan" : "-");