Home | History | Annotate | Download | only in callgrind

Lines Matching refs:thresholds

133 # Thresholds, one for each sort event (or default to 1 if no sort events
136 my @thresholds;
252 $thresholds[$i] = $th;
255 $thresholds[$i] = 0;
259 @thresholds = ();
490 if (not @thresholds) {
492 push(@thresholds, 0);
494 $thresholds[0] = $single_threshold;
732 print("Thresholds: @thresholds\n");
842 # events count above the thresholds (ie. all the interesting ones).
874 (scalar @sort_order == scalar @thresholds) or
875 die("sort_order length != thresholds length:\n",
876 " @sort_order\n @thresholds\n");
879 # @curr_totals has the same shape as @sort_order and @thresholds
881 foreach my $e (@thresholds) {
888 # Stop when we've reached all the thresholds
890 foreach my $i (0 .. scalar @thresholds - 1) {
895 $reached_all_thresholds &&= ($prop >= $thresholds[$i]);