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