Searched refs:maxrun (Results 1 - 9 of 9) sorted by relevance

/netbsd-6-1-5-RELEASE/sbin/fsck/
H A Dpreen.c89 checkfstab(int flags, int maxrun, void *(*docheck)(struct fstab *), argument
154 if (maxrun == 0)
155 maxrun = ndisks;
156 if (maxrun > ndisks)
157 maxrun = ndisks;
159 for (passno = 0; passno < maxrun; ++passno) {
226 } else if (nrun < maxrun && nrun < ndisks) {
H A Dfsck.c78 static int maxrun = 0; variable
137 maxrun = atoi(optarg);
184 maxrun = 1;
190 return checkfstab(flags, maxrun, isok, checkfs);
/netbsd-6-1-5-RELEASE/sys/lib/libkern/
H A Drngtest.c158 const int maxrun[7] = {0, 2685, 1386, 723, 384, 209, 209}; variable
270 } else if (rc->rt_runs[last][run] >= maxrun[run]) {
274 rc->rt_runs[last][run], maxrun[run]);
/netbsd-6-1-5-RELEASE/sys/ufs/ufs/
H A Dufs_bmap.c128 int error, maxrun = 0, num; local
142 * we probably want maxrun to be 1 block less so that we
146 maxrun = MAXPHYS / mp->mnt_stat.f_iosize - 1;
180 for (++bn; bn < NDADDR && *runp < maxrun &&
188 for (++bn; bn < NDADDR && *runp < maxrun &&
277 bn < MNINDIR(ump) && *runp < maxrun &&
290 bn < MNINDIR(ump) && *runp < maxrun &&
/netbsd-6-1-5-RELEASE/sys/ufs/ext2fs/
H A Dext2fs_bmap.c145 int error, maxrun = 0, num; local
159 * we probably want maxrun to be 1 block less so that we
163 maxrun = MAXBSIZE / mp->mnt_stat.f_iosize - 1;
173 for (++bn; bn < NDADDR && *runp < maxrun &&
258 bn < MNINDIR(ump) && *runp < maxrun &&
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpd/
H A Drefclock_wwv.c1403 static int maxrun; /* longest run length */ local
1429 avgcnt = syncnt = maxrun = 0;
1479 } else if (syncnt >= maxrun) {
1480 maxrun = syncnt;
1491 maxrun);
1515 if (syncnt >= maxrun) {
1516 maxrun = syncnt;
1521 if (maxrun == 0) {
1581 up->avgint, maxrun, mcount - zcount, dtemp,
1596 avgcnt = syncnt = maxrun
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/quotacheck/
H A Dquotacheck.c177 int i, argnum, maxrun, errs; local
183 errs = maxrun = 0;
205 maxrun = atoi(optarg);
213 if ((argc == 0 && !aflag) || (argc > 0 && aflag) || (!aflag && maxrun))
247 exit(checkfstab(flags, maxrun, needchk, chkquota));
/netbsd-6-1-5-RELEASE/sbin/resize_ffs/
H A Dresize_ffs.c1377 int maxrun; local
1380 maxrun = sizeof(buf) / newsb->fs_fsize;
1384 (run >= maxrun) ||
/netbsd-6-1-5-RELEASE/sys/fs/msdosfs/
H A Dmsdosfs_vnops.c1642 int run, maxrun; local
1662 maxrun = ulmin(MAXPHYS / dep->de_pmp->pm_bpcluster - 1,
1664 for (run = 1; run <= maxrun; run++) {

Completed in 207 milliseconds