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

/netbsd-current/sbin/fsck/
H A Dpreen.c94 checkfstab(int flags, int maxrun, void *(*docheck)(struct fstab *), argument
165 if (maxrun == 0)
166 maxrun = ndisks;
167 if (maxrun > ndisks)
168 maxrun = ndisks;
170 for (passno = 0; passno < maxrun; ++passno) {
237 } else if (nrun < maxrun && nrun < ndisks) {
H A Dfsck.c78 static int maxrun = 0; variable
138 maxrun = atoi(optarg);
185 maxrun = 1;
191 return checkfstab(flags, maxrun, isok, checkfs);
/netbsd-current/sys/lib/libkern/
H A Drngtest.c158 const int maxrun[7] = {0, 2685, 1386, 723, 384, 209, 209}; variable
250 } else if (rc->rt_runs[last][run] >= maxrun[run]) {
254 rc->rt_runs[last][run], maxrun[run]);
/netbsd-current/sys/ufs/lfs/
H A Dulfs_bmap.c146 int error, maxrun = 0, num; local
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 &&
/netbsd-current/sys/ufs/ufs/
H A Dufs_bmap.c125 int error, maxrun = 0, num; local
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 &&
/netbsd-current/sys/ufs/ext2fs/
H A Dext2fs_bmap.c213 int error, maxrun = 0, num; local
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 &&
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Drefclock_wwv.c1399 static int maxrun; /* longest run length */ local
1425 avgcnt = syncnt = maxrun = 0;
1475 } else if (syncnt >= maxrun) {
1476 maxrun = syncnt;
1487 maxrun);
1511 if (syncnt >= maxrun) {
1512 maxrun = syncnt;
1517 if (maxrun == 0) {
1577 up->avgint, maxrun, mcount - zcount, dtemp,
1592 avgcnt = syncnt = maxrun
[all...]
/netbsd-current/usr.sbin/quotacheck/
H A Dquotacheck.c178 int i, argnum, maxrun, errs; local
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));
/netbsd-current/sys/fs/msdosfs/
H A Dmsdosfs_vnops.c1246 int run, maxrun; local
1266 maxrun = ulmin(MAXPHYS / dep->de_pmp->pm_bpcluster - 1,
1268 for (run = 1; run <= maxrun; run++) {
/netbsd-current/sbin/resize_ffs/
H A Dresize_ffs.c1441 int maxrun; local
1444 maxrun = sizeof(buf) / newsb->fs_fsize;
1448 (run >= maxrun) ||

Completed in 287 milliseconds