Lines Matching defs:growth
427 * PSI growth tracking window update and growth calculation routine.
430 * partially elapsed windows using historical growth data from the
434 * positive direction and over relatively small window sizes the growth
440 u64 growth;
443 growth = value - win->start_value;
447 * the average per-window growth of the previous window.
449 * growth from the previous window assuming it was linear.
452 window_reset(win, now, value, growth);
457 growth += div64_u64(win->prev_growth * remaining, win->size);
460 return growth;
480 * On subsequent updates, calculate growth deltas and let
484 u64 growth;
499 /* Calculate growth since last update */
500 growth = window_update(&t->win, now, total[t->state]);
502 if (growth < t->threshold)