HomeSort by: relevance | last modified time | path
    Searched defs:estcpu (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
sched_4bsd.c 178 * This gives estcpu influence over 18 priority levels, and leaves nice
180 * either side of estcpu's 18.
274 decay_cpu(fixpt_t loadfac, fixpt_t estcpu)
277 if (estcpu == 0) {
285 return estcpu * loadfac / (loadfac + FSCALE);
289 return (uint64_t)estcpu * loadfac / (loadfac + FSCALE);
293 decay_cpu_batch(fixpt_t loadfac, fixpt_t estcpu, unsigned int n)
309 while (estcpu != 0 && n > 1) {
310 estcpu = decay_cpu(loadfac, estcpu);
466 fixpt_t estcpu; local
    [all...]
sched_4bsd.c 178 * This gives estcpu influence over 18 priority levels, and leaves nice
180 * either side of estcpu's 18.
274 decay_cpu(fixpt_t loadfac, fixpt_t estcpu)
277 if (estcpu == 0) {
285 return estcpu * loadfac / (loadfac + FSCALE);
289 return (uint64_t)estcpu * loadfac / (loadfac + FSCALE);
293 decay_cpu_batch(fixpt_t loadfac, fixpt_t estcpu, unsigned int n)
309 while (estcpu != 0 && n > 1) {
310 estcpu = decay_cpu(loadfac, estcpu);
466 fixpt_t estcpu; local
    [all...]

Completed in 31 milliseconds