Home | History | Annotate | Download | only in base

Lines Matching defs:Threshold

87       Threshold
91 type(Threshold),
94 threshold(2) {
100 size_t threshold; // Maximum difference from desired size. 2 by default.
291 else if (value == "Threshold")
292 current_info->type = SubDirInfo::Threshold;
297 } else if (key == "Threshold") {
298 current_info->threshold = atoi(value.c_str());
325 if (size >= info->size - info->threshold &&
326 size <= info->size + info->threshold) {
329 return abs(size - info->size - info->threshold) <
330 abs(size - info->size + info->threshold)
331 ? size - info->size - info->threshold
332 : size - info->size + info->threshold;