Home | History | Annotate | Download | only in perf-tests

Lines Matching defs:out

51 my $OUT; # see out()
103 $OUT = '';
108 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
111 out("<TR><TD>");
114 out("</TD></TR>");
119 out("<TR><TD>");
122 out("</TD></TR>");
126 out("</TABLE></P>");
139 print HTML $OUT;
151 # Append text to the global variable $OUT
152 sub out {
153 $OUT .= join('', @_);
157 # Append text to the global variable $OUT
159 $OUT .= join('', @_) . "\n";
205 out("<P>Measuring $method for input file @$pat[0] for encoding @$pat[2] , ");
207 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
209 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
228 out("<P>Calibration pass ($CALIBRATE sec): ");
229 out("$data[0] ms, ");
230 out("$data[1] iterations = ");
231 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
250 out("Iterations per pass: $iterCount<BR>\n");
251 out("Events per iteration: $eventsPerIter<BR>\n");
255 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
287 my @out;
289 push(@out, $_);
293 @out = grep(!/^\#/, @out); # filter out comments
295 #print "[", join("\n", @out), "]\n";
300 foreach (@out) {