Home | History | Annotate | Download | only in cachegrind

Lines Matching refs:thresholds

118 # Thresholds, one for each sort event (or default to 1 if no sort events
121 my @thresholds;
196 # Nb: You can specify thresholds individually, eg.
207 $thresholds[$i] = $th;
210 $thresholds[$i] = 0;
214 @thresholds = ();
378 if (not @thresholds) {
380 push(@thresholds, 100);
382 $thresholds[0] = $single_threshold;
464 print("Thresholds: @thresholds\n");
574 # events count above the thresholds (ie. all the interesting ones).
606 (scalar @sort_order == scalar @thresholds) or
607 die("sort_order length != thresholds length:\n",
608 " @sort_order\n @thresholds\n");
611 # @curr_totals has the same shape as @sort_order and @thresholds
613 foreach my $e (@thresholds) {
622 # Stop when we've reached all the thresholds
624 foreach my $i (0 .. scalar @thresholds - 1) {
627 $any_thresholds_exceeded ||= ($prop >= $thresholds[$i]);