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;
150 $callstacks{$callstack}{"byteCount"} += $byteCount;
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";