Lines Matching refs:callCount
72 my ($callCount, $byteCount);
76 ($callCount, $byteCount) = ($line =~ /(\d+) calls for (\d+) bytes/);
82 if (!$callCount || !$byteCount) {
83 $callCount = 1;
98 if (!$callCount || !$byteCount) {
99 $callCount = 1;
117 next if (!$callCount || !$byteCount);
146 $callstacks{$callstack} = {"callCount" => 0, "byteCount" => 0};
149 $callstacks{$callstack}{"callCount"} += $callCount;
155 my $callCount = $callstacks{$callstack}{"callCount"};
160 print commify($callCount) . " calls for " . commify($byteCount) . " bytes: $callstack\n";