Home
last modified time | relevance | path

Searched refs:minsync (Results 1 – 2 of 2) sorted by relevance

/mirbsd/src/sys/dev/pci/
Dncr.c699 /*0*/ u_char minsync; member
1159 u_char minsync; /* Minimum sync period factor */ member
3918 if (period <= 250) np->minsync = 10;
3919 else if (period <= 303) np->minsync = 11;
3920 else if (period <= 500) np->minsync = 12;
3921 else np->minsync = (period + 40 - 1) / 40;
3927 if (np->minsync < 25 && !(np->features & (FE_ULTRA|FE_ULTRA2)))
3928 np->minsync = 25;
3929 else if (np->minsync < 12 && !(np->features & FE_ULTRA2))
3930 np->minsync = 12;
[all …]
Dncrstat.c376 if (tip->minsync==255) { in do_info()
378 } else if (tip->minsync) { in do_info()
379 printf ("%4.1f", 250.0 / tip->minsync); in do_info()
1273 tip->minsync, tip->maxoffs, tip->period, tip->sval); in dump_tip()