Lines Matching refs:stat
130 $stat = 'memory usage';
143 ($stat, $value) = /^(\S+)\s+(.*)/;
145 ($stat, $value) =
147 $stat = $in_dist . '::' . $stat;
155 $stat = $1;
159 ($stat, $value) = /^(\S+)\s+(.*)/;
163 $$hashref{$stat} = $value;
220 foreach $stat (sort keys %$refhash)
222 $refvalue = $$refhash{$stat};
223 $newvalue = $$newhash{$stat};
226 # stat missing from new file
227 push @missing_stats, $stat;
231 if ($stat =~ /($key_stat_pattern)/o) {
233 push @key_stats, [$stat, $refvalue, $newvalue];
236 if ($ignore{$stat} or $refvalue eq $newvalue) {
237 # stat is in "ignore" list, or hasn't changed
243 print "$stat: $refvalue --> $newvalue\n";
251 [$stat, $refvalue, $newvalue, $reldiff];
261 delete $$newhash{$stat};
335 foreach $stat (@missing_stats)
337 # print "\t$stat\n";
338 printf " %-50s ", $stat;
339 print "$$refhash{$stat}\n";
355 foreach $stat (sort @added_stats)
357 # print "\t$stat\n";
358 printf " %-50s ", $stat;
359 print "$$newhash{$stat}\n";
366 # 1 if there are additional stats, but no stat errors