Home | History | Annotate | Download | only in Scripts

Lines Matching refs:byteCount

72         my ($callCount, $byteCount);
76 ($callCount, $byteCount) = ($line =~ /(\d+) calls for (\d+) bytes/);
82 if (!$callCount || !$byteCount) {
84 ($byteCount) = ($line =~ /Leak: [x[:xdigit:]]* size=(\d+)/);
86 if ($byteCount) {
98 if (!$callCount || !$byteCount) {
100 ($byteCount) = ($line =~ /Key: (?:\d+), (\d+) bytes/);
101 if ($byteCount) {
117 next if (!$callCount || !$byteCount);
119 $byteCountTotal += $byteCount;
146 $callstacks{$callstack} = {"callCount" => 0, "byteCount" => 0};
150 $callstacks{$callstack}{"byteCount"} += $byteCount;
154 for my $callstack (sort { $callstacks{$b}{"byteCount"} <=> $callstacks{$a}{"byteCount"} } keys %callstacks) {
156 my $byteCount = $callstacks{$callstack}{"byteCount"};
157 last if ($byteMinimum && $byteCount < $byteMinimum);
159 $byteCountTotalReported += $byteCount;
160 print commify($callCount) . " calls for " . commify($byteCount) . " bytes: $callstack\n";