Home | History | Annotate | Download | only in Bin

Lines Matching refs:Count

25 #		COUNT           Number of samples
78 \@pc[arg0] = count();
90 my %Count;
96 my ($addr, $count) = split ' ', $line;
100 $Count{$name} += $count;
101 $total += $count;
108 printf "\n%-52s %8s %6s\n", $mods ? "MODULE" : "FUNCTION", "COUNT", "PCNT";
109 foreach my $name (sort { $Count{$a} <=> $Count{$b} } keys %Count) {
110 printf "%-52s %8d %5.1f%%\n", $name, $Count{$name},
111 100 * $Count{$name} / ($total ? $total : 1);