Lines Matching defs:out
45 my $OUT; # see out()
96 $OUT = '';
101 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
104 out("<TR><TD>");
107 out("</TD></TR>");
112 out("<TR><TD>");
115 out("</TD></TR>");
119 out("</TABLE></P>");
132 print HTML $OUT;
144 # Append text to the global variable $OUT
145 sub out {
146 $OUT .= join('', @_);
150 # Append text to the global variable $OUT
152 $OUT .= join('', @_) . "\n";
198 out("<P>Measuring $method for input file @$pat[0] for encoding @$pat[2] , ");
200 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
202 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
221 out("<P>Calibration pass ($CALIBRATE sec): ");
222 out("$data[0] ms, ");
223 out("$data[1] iterations = ");
224 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
243 out("Iterations per pass: $iterCount<BR>\n");
244 out("Events per iteration: $eventsPerIter<BR>\n");
248 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
280 my @out;
282 push(@out, $_);
286 @out = grep(!/^\#/, @out); # filter out comments
288 #print "[", join("\n", @out), "]\n";
293 foreach (@out) {