Lines Matching refs:minsync
1226 /*3*/ u_char minsync; member
1232 /*0*/ u_char minsync; member
1689 u_char minsync; /* Minimum sync period factor */ member
3815 if (period <= 250) np->minsync = 10; in ncr_prepare_setting()
3816 else if (period <= 303) np->minsync = 11; in ncr_prepare_setting()
3817 else if (period <= 500) np->minsync = 12; in ncr_prepare_setting()
3818 else np->minsync = (period + 40 - 1) / 40; in ncr_prepare_setting()
3824 if (np->minsync < 25 && !(np->features & FE_ULTRA)) in ncr_prepare_setting()
3825 np->minsync = 25; in ncr_prepare_setting()
3988 np->minsync < 12 ? 40 : (np->minsync < 25 ? 20 : 10), in ncr_prepare_setting()
4088 tp->maxoffs ? tp->minsync : 0, tp->maxoffs); in ncr_prepare_nego()
5333 if (tp->usrsync < np->minsync) { in ncr_init()
5334 tp->usrsync = np->minsync; in ncr_init()
5374 u_long minsync = tp->usrsync; in ncr_negotiate() local
5381 if (minsync < 12) minsync = 12; in ncr_negotiate()
5388 if (minsync < np->minsync) in ncr_negotiate()
5389 minsync = np->minsync; in ncr_negotiate()
5395 if (minsync > np->maxsync) in ncr_negotiate()
5396 minsync = 255; in ncr_negotiate()
5401 tp->minsync = minsync; in ncr_negotiate()
5402 tp->maxoffs = (minsync<255 ? tp->maxoffs : 0); in ncr_negotiate()
6897 if (per < np->minsync) in ncr_int_sir()
6898 {chg = 1; per = np->minsync;} in ncr_int_sir()
6899 if (per < tp->minsync) in ncr_int_sir()
6900 {chg = 1; per = tp->minsync;} in ncr_int_sir()
6920 tp->minsync = 0; in ncr_int_sir()
8546 else if (period < np->minsync)
8547 period = np->minsync;