thresholds        253 daemons/controld/controld_throttle.c throttle_check_thresholds(float load, const char *desc, float thresholds[4])
thresholds        255 daemons/controld/controld_throttle.c     if (load > thresholds[3]) {
thresholds        259 daemons/controld/controld_throttle.c     } else if (load > thresholds[2]) {
thresholds        263 daemons/controld/controld_throttle.c     } else if (load > thresholds[1]) {
thresholds        267 daemons/controld/controld_throttle.c     } else if (load > thresholds[0]) {
thresholds        280 daemons/controld/controld_throttle.c     float thresholds[4];
thresholds        290 daemons/controld/controld_throttle.c     thresholds[0] = throttle_load_target * normalize * THROTTLE_FACTOR_LOW;
thresholds        291 daemons/controld/controld_throttle.c     thresholds[1] = throttle_load_target * normalize * THROTTLE_FACTOR_MEDIUM;
thresholds        292 daemons/controld/controld_throttle.c     thresholds[2] = throttle_load_target * normalize * THROTTLE_FACTOR_HIGH;
thresholds        293 daemons/controld/controld_throttle.c     thresholds[3] = load + 1.0; /* never extreme */
thresholds        295 daemons/controld/controld_throttle.c     return throttle_check_thresholds(load, desc, thresholds);
thresholds        307 daemons/controld/controld_throttle.c     float thresholds[4];
thresholds        331 daemons/controld/controld_throttle.c         thresholds[0] = cib_max_cpu * 0.8;
thresholds        332 daemons/controld/controld_throttle.c         thresholds[1] = cib_max_cpu * 0.9;
thresholds        333 daemons/controld/controld_throttle.c         thresholds[2] = cib_max_cpu;
thresholds        335 daemons/controld/controld_throttle.c         thresholds[3] = cib_max_cpu * 1.5;
thresholds        337 daemons/controld/controld_throttle.c         mode = throttle_check_thresholds(load, "CIB load", thresholds);