thresholds        254 daemons/controld/controld_throttle.c                           const float thresholds[4])
thresholds        256 daemons/controld/controld_throttle.c     if (load > thresholds[3]) {
thresholds        260 daemons/controld/controld_throttle.c     } else if (load > thresholds[2]) {
thresholds        264 daemons/controld/controld_throttle.c     } else if (load > thresholds[1]) {
thresholds        268 daemons/controld/controld_throttle.c     } else if (load > thresholds[0]) {
thresholds        281 daemons/controld/controld_throttle.c     float thresholds[4];
thresholds        291 daemons/controld/controld_throttle.c     thresholds[0] = throttle_load_target * normalize * THROTTLE_FACTOR_LOW;
thresholds        292 daemons/controld/controld_throttle.c     thresholds[1] = throttle_load_target * normalize * THROTTLE_FACTOR_MEDIUM;
thresholds        293 daemons/controld/controld_throttle.c     thresholds[2] = throttle_load_target * normalize * THROTTLE_FACTOR_HIGH;
thresholds        294 daemons/controld/controld_throttle.c     thresholds[3] = load + 1.0; /* never extreme */
thresholds        296 daemons/controld/controld_throttle.c     return throttle_check_thresholds(load, desc, thresholds);
thresholds        308 daemons/controld/controld_throttle.c     float thresholds[4];
thresholds        332 daemons/controld/controld_throttle.c         thresholds[0] = cib_max_cpu * 0.8;
thresholds        333 daemons/controld/controld_throttle.c         thresholds[1] = cib_max_cpu * 0.9;
thresholds        334 daemons/controld/controld_throttle.c         thresholds[2] = cib_max_cpu;
thresholds        336 daemons/controld/controld_throttle.c         thresholds[3] = cib_max_cpu * 1.5;
thresholds        338 daemons/controld/controld_throttle.c         mode = throttle_check_thresholds(load, "CIB load", thresholds);