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

/freebsd-current/include/rpcsvc/
H A Drstat.x42 %#define FSHIFT 8 /* bits to right of fixed binary point */
43 %#define FSCALE (1<<FSHIFT)
/freebsd-current/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-current/sys/sys/
H A Dparam.h355 * by the formula (1 / (2 ^ (FSHIFT - 11))). Since the intermediate
360 * FSHIFT must be at least 11. This gives a maximum load avg of 2 million.
362 #define FSHIFT 11 /* bits to right of fixed binary point */ macro
363 #define FSCALE (1<<FSHIFT)
/freebsd-current/sys/kern/
H A Dtty_info.c307 load = ((int64_t)averunnable.ldavg[0] * 100 + FSCALE / 2) >> FSHIFT;
367 pctcpu = (sched_pctcpu(td) * 10000 + FSCALE / 2) >> FSHIFT;
H A Dsched_4bsd.c444 * and possibly adjust FSHIFT in "param.h" so that (FSHIFT >= CCPU_SHIFT).
450 * can set CCPU_SHIFT to (FSHIFT + 1) which will use a slower/less-accurate
503 ts->ts_pctcpu = (ts->ts_pctcpu * ccpu) >> FSHIFT;
510 #if (FSHIFT >= CCPU_SHIFT)
513 (FSHIFT - CCPU_SHIFT) :
515 << (FSHIFT - CCPU_SHIFT)) / realstathz;
519 FSCALE / realstathz)) >> FSHIFT;
1648 #if (FSHIFT >= CCPU_SHIFT)
1651 (FSHIFT
[all...]
H A Dkern_synch.c624 nrun * FSCALE * (FSCALE - cexp[i])) >> FSHIFT;
H A Dkern_racct.c370 pctcpu_next = (pctcpu * ccpu_exp[1]) >> FSHIFT;
H A Dsched_ule.c2858 pctcpu = (FSCALE * ((FSCALE * rtick)/hz)) >> FSHIFT;
/freebsd-current/usr.bin/rup/
H A Drup.c43 #undef FSHIFT /* Use protocol's shift and scale values */ macro
/freebsd-current/contrib/sendmail/src/
H A Dconf.c1476 #ifndef FSHIFT
1478 # define FSHIFT 5 macro
1482 # define FSHIFT 10 macro
1485 #endif /* ! FSHIFT */
1487 #ifndef FSHIFT
1488 # define FSHIFT 8 macro
1492 # define FSCALE (1 << FSHIFT)
1635 (int) (avenrun[0] + FSCALE/2) >> FSHIFT);
1636 return ((int) (avenrun[0] + FSCALE/2) >> FSHIFT);
1705 (int) (avenrun[0] + FSCALE/2) >> FSHIFT);
[all...]
/freebsd-current/libexec/rpc.rstatd/
H A Drstat_proc.c58 #undef FSHIFT /* Use protocol's shift and scale values */ macro
/freebsd-current/contrib/sendmail/include/sm/
H A Dconf.h224 # define FSHIFT 16 macro
1625 # define FSHIFT 16 macro

Completed in 135 milliseconds