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

Lines Matching defs:out

49 my $OUT; # see out()
101 $OUT = '';
106 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
109 out("<TR><TD>");
112 out("</TD></TR>");
117 out("<TR><TD>");
120 out("</TD></TR>");
124 out("</TABLE></P>");
137 print HTML $OUT;
149 # Append text to the global variable $OUT
150 sub out {
151 $OUT .= join('', @_);
155 # Append text to the global variable $OUT
157 $OUT .= join('', @_) . "\n";
203 out("<P>Measuring $method for input file @$pat[0] for encoding @$pat[2] , ");
205 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
207 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
226 out("<P>Calibration pass ($CALIBRATE sec): ");
227 out("$data[0] ms, ");
228 out("$data[1] iterations = ");
229 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
248 out("Iterations per pass: $iterCount<BR>\n");
249 out("Events per iteration: $eventsPerIter<BR>\n");
253 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
285 my @out;
287 push(@out, $_);
291 @out = grep(!/^\#/, @out); # filter out comments
293 #print "[", join("\n", @out), "]\n";
298 foreach (@out) {