HomeSort by: relevance | last modified time | path
    Searched defs:nextfree (Results 1 - 4 of 4) sorted by relevancy

  /src/games/backgammon/backgammon/
move.c 94 static struct BOARD *nextfree(void);
256 now = nextfree(); /* get free BOARD */
359 nextfree(void) function in typeref:struct:BOARD *
  /src/sys/ufs/lfs/
lfs_alloc.c 399 ino_t nextfree = 0, maxino, count; /* XXX: gcc */ local in function:lfs_valloc_fixed
411 nextfree = lfs_if_getnextfree(fs, ifp);
413 if (nextfree == ino ||
414 nextfree == LFS_UNUSED_INUM)
417 thisino = nextfree;
427 if (nextfree == LFS_UNUSED_INUM) {
445 /* Clear nextfree, note daddr, and set generation number */
662 ino_t nextfree; local in function:lfs_vfree
665 LFS_GET_HEADFREE(fs, cip, cbp, &nextfree);
666 lfs_if_setnextfree(fs, ifp, nextfree);
1042 ino_t i, headino, maxino, thisino, tailino, nextfree; local in function:lfs_check_freelist
    [all...]
  /src/sbin/fsck_lfs/
pass6.c 210 ino_t nextfree; local in function:remove_ino
225 LFS_GET_HEADFREE(fs, cip, cbp, &nextfree);
226 lfs_if_setnextfree(fs, ifp, nextfree);
470 ino_t ino, nextfree, oldhead; local in function:alloc_inode
488 nextfree = lfs_if_getnextfree(fs, ifp);
495 LFS_PUT_HEADFREE(fs, cip, cbp, nextfree);
497 if (nextfree == 0) {
507 lfs_if_setnextfree(fs, ifp, nextfree);
509 if (nextfree == 0)
  /src/usr.sbin/dumplfs/
dumplfs.c 125 ino_t nextfree; local in function:print_ientry
129 nextfree = lfs_if_getnextfree(lfsp, ip);
133 (uintmax_t)nextfree);
137 nextfree == LFS_ORPHAN_NEXTFREE(lfsp) ? "orphan" : "-");

Completed in 14 milliseconds