Lines Matching defs:out
105 my $OUT; # see out()
150 $OUT = '';
155 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
158 out("<TR><TD>");
161 out("</TD></TR>");
166 out("<TR><TD>");
169 out("</TD></TR>");
173 out("</TABLE></P>");
186 print HTML $OUT;
198 # Append text to the global variable $OUT
199 sub out {
200 $OUT .= join('', @_);
204 # Append text to the global variable $OUT
206 $OUT .= join('', @_) . "\n";
252 out("<P>Measuring $method for input file @$pat[0] in @$pat[2] , ");
254 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
256 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
275 out("<P>Calibration pass ($CALIBRATE sec): ");
276 out("$data[0] ms, ");
277 out("$data[1] iterations = ");
278 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
297 out("Iterations per pass: $iterCount<BR>\n");
298 out("Events per iteration: $eventsPerIter<BR>\n");
302 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
335 my @out;
337 push(@out, $_);
341 @out = grep(!/^\#/, @out); # filter out comments
343 #print "[", join("\n", @out), "]\n";
348 foreach (@out) {