Searched refs:FSHIFT (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/include/rpcsvc/
H A Drstat.x42 %#define FSHIFT 8 /* bits to right of fixed binary point */
43 %#define FSCALE (1<<FSHIFT)
/freebsd-11-stable/sys/dev/syscons/snake/
H A Dsnake_saver.c59 #define LOAD_HIGH(ld) (((ld * 100 + FSCALE / 2) >> FSHIFT) / 100)
60 #define LOAD_LOW(ld) (((ld * 100 + FSCALE / 2) >> FSHIFT) % 100)
117 load = ((averunnable.ldavg[0] * 100 + FSCALE / 2) >> FSHIFT);
/freebsd-11-stable/sys/sys/
H A Dparam.h337 * by the formula (1 / (2 ^ (FSHIFT - 11))). The maximum load average that
339 * the formula (2 ^ (2 * (16 - FSHIFT))) for (FSHIFT < 15).
342 * FSHIFT must be at least 11; this gives us a maximum load avg of ~1024.
344 #define FSHIFT 11 /* bits to right of fixed binary point */ macro
345 #define FSCALE (1<<FSHIFT)
/freebsd-11-stable/sys/kern/
H A Dtty_info.c232 load = (averunnable.ldavg[0] * 100 + FSCALE / 2) >> FSHIFT;
292 pctcpu = (sched_pctcpu(td) * 10000 + FSCALE / 2) >> FSHIFT;
H A Dsched_4bsd.c440 * and possibly adjust FSHIFT in "param.h" so that (FSHIFT >= CCPU_SHIFT).
446 * can set CCPU_SHIFT to (FSHIFT + 1) which will use a slower/less-accurate
499 ts->ts_pctcpu = (ts->ts_pctcpu * ccpu) >> FSHIFT;
506 #if (FSHIFT >= CCPU_SHIFT)
509 (FSHIFT - CCPU_SHIFT) :
511 << (FSHIFT - CCPU_SHIFT)) / realstathz;
515 FSCALE / realstathz)) >> FSHIFT;
1590 #if (FSHIFT >= CCPU_SHIFT)
1593 (FSHIFT
[all...]
H A Dkern_synch.c520 nrun * FSCALE * (FSCALE - cexp[i])) >> FSHIFT;
H A Dkern_racct.c375 pctcpu_next = (pctcpu * ccpu_exp[1]) >> FSHIFT;
H A Dsched_ule.c2654 pctcpu = (FSCALE * ((FSCALE * rtick)/hz)) >> FSHIFT;
/freebsd-11-stable/usr.bin/rup/
H A Drup.c44 #undef FSHIFT /* Use protocol's shift and scale values */ macro
/freebsd-11-stable/contrib/sendmail/src/
H A Dconf.c1472 #ifndef FSHIFT
1474 # define FSHIFT 5 macro
1478 # define FSHIFT 10 macro
1481 #endif /* ! FSHIFT */
1483 #ifndef FSHIFT
1484 # define FSHIFT 8 macro
1488 # define FSCALE (1 << FSHIFT)
1631 (int) (avenrun[0] + FSCALE/2) >> FSHIFT);
1632 return ((int) (avenrun[0] + FSCALE/2) >> FSHIFT);
1701 (int) (avenrun[0] + FSCALE/2) >> FSHIFT);
[all...]
/freebsd-11-stable/libexec/rpc.rstatd/
H A Drstat_proc.c68 #undef FSHIFT /* Use protocol's shift and scale values */ macro
/freebsd-11-stable/contrib/sendmail/include/sm/
H A Dconf.h224 # define FSHIFT 16 macro
1622 # define FSHIFT 16 macro

Completed in 158 milliseconds