Lines Matching defs:threshold
225 int threshold;
1614 /* check to make sure that the child method meets the threshold of the parent */
1620 return (percentage < gOptions.threshold) ? 0 : 1;
2814 fprintf(stderr, " -t threshold - Threshold percentage for including nodes in the graph\n");
2845 gOptions.threshold = atoi(optarg);
2859 gOptions.threshold = -1;
2867 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) {
2868 gOptions.threshold = 20;