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

  /src/sys/lib/libkern/
rngtest.c 158 const int maxrun[7] = {0, 2685, 1386, 723, 384, 209, 209}; variable in typeref:typename:const int[7]
250 } else if (rc->rt_runs[last][run] >= maxrun[run]) {
254 rc->rt_runs[last][run], maxrun[run]);
  /src/sys/ufs/lfs/
ulfs_bmap.c 146 int error, maxrun = 0, num; local in function:ulfs_bmaparray
159 * we probably want maxrun to be 1 block less so that we
163 maxrun = MAXPHYS / mp->mnt_stat.f_iosize - 1;
197 for (++bn; bn < ULFS_NDADDR && *runp < maxrun &&
205 for (++bn; bn < ULFS_NDADDR && *runp < maxrun &&
292 bn < MNINDIR(fs) && *runp < maxrun &&
305 bn < MNINDIR(fs) && *runp < maxrun &&
  /src/sys/ufs/ufs/
ufs_bmap.c 125 int error, maxrun = 0, num; local in function:ufs_bmaparray
137 * we probably want maxrun to be 1 block less so that we
141 maxrun = MAXPHYS / mp->mnt_stat.f_iosize - 1;
175 for (++bn; bn < UFS_NDADDR && *runp < maxrun &&
183 for (++bn; bn < UFS_NDADDR && *runp < maxrun &&
276 bn < MNINDIR(ump) && *runp < maxrun &&
289 bn < MNINDIR(ump) && *runp < maxrun &&
  /src/sys/ufs/ext2fs/
ext2fs_bmap.c 213 int error, maxrun = 0, num; local in function:ext2fs_bmaparray
227 * we probably want maxrun to be 1 block less so that we
231 maxrun = MAXBSIZE / mp->mnt_stat.f_iosize - 1;
241 for (++bn; bn < EXT2FS_NDADDR && *runp < maxrun &&
326 bn < MNINDIR(ump) && *runp < maxrun &&
  /src/sbin/fsck/
fsck.c 78 static int maxrun = 0; variable in typeref:typename:int
138 maxrun = atoi(optarg);
185 maxrun = 1;
191 return checkfstab(flags, maxrun, isok, checkfs);
  /src/sys/fs/msdosfs/
msdosfs_vnops.c 1240 int run, maxrun; local in function:msdosfs_bmap
1260 maxrun = ulmin(MAXPHYS / dep->de_pmp->pm_bpcluster - 1,
1262 for (run = 1; run <= maxrun; run++) {
  /src/usr.sbin/quotacheck/
quotacheck.c 178 int i, argnum, maxrun, errs; local in function:main
184 errs = maxrun = 0;
206 maxrun = atoi(optarg);
214 if ((argc == 0 && !aflag) || (argc > 0 && aflag) || (!aflag && maxrun))
248 exit(checkfstab(flags, maxrun, needchk, chkquota));
  /src/sbin/resize_ffs/
resize_ffs.c 1441 int maxrun; local in function:perform_data_move
1444 maxrun = sizeof(buf) / newsb->fs_fsize;
1448 (run >= maxrun) ||

Completed in 99 milliseconds