Lines Matching refs:Count
28 # COUNT Number of samples
90 \@pc[arg1] = count();
102 my %Count;
109 my ($tag, $addr, $count) = split ' ', $line;
113 $Count{$name} += $count;
114 $total += $count;
121 printf "\n%-52s %8s %6s\n", $libs ? "LIBRARY" : "FUNCTION", "COUNT", "PCNT";
122 foreach my $name (sort { $Count{$a} <=> $Count{$b} } keys %Count) {
123 printf "%-52s %8d %5.1f%%\n", $name, $Count{$name},
124 100 * $Count{$name} / ($total ? $total : 1);