Lines Matching defs:minsync
1214 /*3*/ u_char minsync;
1220 /*0*/ u_char minsync;
1677 u_char minsync; /* Minimum sync period factor */
3803 if (period <= 250) np->minsync = 10;
3804 else if (period <= 303) np->minsync = 11;
3805 else if (period <= 500) np->minsync = 12;
3806 else np->minsync = (period + 40 - 1) / 40;
3812 if (np->minsync < 25 && !(np->features & FE_ULTRA))
3813 np->minsync = 25;
3979 np->minsync < 12 ? 40 : (np->minsync < 25 ? 20 : 10),
4079 tp->maxoffs ? tp->minsync : 0, tp->maxoffs);
5324 if (tp->usrsync < np->minsync) {
5325 tp->usrsync = np->minsync;
5362 ** minsync unit is 4ns !
5365 u_long minsync = tp->usrsync;
5372 if (minsync < 12) minsync = 12;
5379 if (minsync < np->minsync)
5380 minsync = np->minsync;
5386 if (minsync > np->maxsync)
5387 minsync = 255;
5392 tp->minsync = minsync;
5393 tp->maxoffs = (minsync<255 ? tp->maxoffs : 0);
6889 if (per < np->minsync)
6890 {chg = 1; per = np->minsync;}
6891 if (per < tp->minsync)
6892 {chg = 1; per = tp->minsync;}
6912 tp->minsync = 0;
8535 else if (period < np->minsync)
8536 period = np->minsync;