Lines Matching defs:minsync
1216 /*3*/ u_char minsync;
1222 /*0*/ u_char minsync;
1674 u_char minsync; /* Minimum sync period factor */
3775 if (period <= 250) np->minsync = 10;
3776 else if (period <= 303) np->minsync = 11;
3777 else if (period <= 500) np->minsync = 12;
3778 else np->minsync = (period + 40 - 1) / 40;
3784 if (np->minsync < 25 && !(np->features & FE_ULTRA))
3785 np->minsync = 25;
3951 np->minsync < 12 ? 40 : (np->minsync < 25 ? 20 : 10),
4051 tp->maxoffs ? tp->minsync : 0, tp->maxoffs);
5183 if (tp->usrsync < np->minsync) {
5184 tp->usrsync = np->minsync;
5221 ** minsync unit is 4ns !
5224 u_long minsync = tp->usrsync;
5231 if (minsync < 12) minsync = 12;
5238 if (minsync < np->minsync)
5239 minsync = np->minsync;
5245 if (minsync > np->maxsync)
5246 minsync = 255;
5251 tp->minsync = minsync;
5252 tp->maxoffs = (minsync<255 ? tp->maxoffs : 0);
6723 if (per < np->minsync)
6724 {chg = 1; per = np->minsync;}
6725 if (per < tp->minsync)
6726 {chg = 1; per = tp->minsync;}
6746 tp->minsync = 0;
8330 else if (period < np->minsync)
8331 period = np->minsync;