Lines Matching defs:value
76 * threshold value, we use the average of these intervals as prediction.
97 * a value of 10 is added for each point of "per cpu load average" we have.
98 * a value of 5 points is added for each process that is waiting for
103 * decision, while the iowait value gives a cpu local instantanious input.
167 * average of these 8 points as the estimated value.
176 thresh = INT_MAX; /* Discard outliers above this value */
186 unsigned int value = data->intervals[i];
187 if (value <= thresh) {
188 sum += value;
190 if (value > max)
191 max = value;
193 if (value < min)
194 min = value;
213 unsigned int value = data->intervals[i];
214 if (value <= thresh) {
215 int64_t diff = (int64_t)value - avg;
490 /* measured value */