Home | History | Annotate | Download | only in callgrind

Lines Matching refs:sort_order

77 # but we have to use @sort_order and @show_order below to handle the --sort and
131 my @sort_order;
484 push(@sort_order, $events{$sort_event});
491 foreach my $e (@sort_order) {
764 foreach my $i (@sort_order) {
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
892 if ($summary_CC->[$sort_order[$i]] >0) {
893 $prop = $prop / $summary_CC->[$sort_order[$i]];
951 foreach my $i (0 .. scalar @sort_order - 1) {
953 $curr_totals[$i] = $summary_CC->[$sort_order[$i]] -
954 $fn_CC->[$sort_order[$i]]
955 if (defined $fn_CC->[$sort_order[$i]]);
957 $curr_totals[$i] += $fn_CC->[$sort_order[$i]]
958 if (defined $fn_CC->[$sort_order[$i]]);