Lines Matching defs:threshold
80 * Logging on/off threshold.
158 * If tracing is on, increase the idle threshold by 1.00% so that we do not
160 * threshold.
164 int threshold = idle_threshold + (tracing?100:0);
169 return (diff_idle * 10000 < diff_total * threshold);
500 " -t N cpu threshold for logging to start "
529 int threshold;
544 threshold = atoi(optarg);
545 if (threshold > 9999 || threshold < 5000) {
546 fprintf(stderr, "logging threshold should be 5000-9999\n");
549 idle_threshold = 10000 - threshold;