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