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

Lines Matching defs:out

53 my $OUT; # see out()
98 $OUT = '';
103 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
106 out("<TR><TD>");
109 out("</TD></TR>");
114 out("<TR><TD>");
117 out("</TD></TR>");
121 out("</TABLE></P>");
134 print HTML $OUT;
146 # Append text to the global variable $OUT
147 sub out {
148 $OUT .= join('', @_);
152 # Append text to the global variable $OUT
154 $OUT .= join('', @_) . "\n";
200 out("<P>Measuring $method using $pat, ");
202 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
204 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
223 out("<P>Calibration pass ($CALIBRATE sec): ");
224 out("$data[0] ms, ");
225 out("$data[1] iterations = ");
226 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
245 out("Iterations per pass: $iterCount<BR>\n");
246 out("Events per iteration: $eventsPerIter<BR>\n");
250 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
282 my @out;
284 push(@out, $_);
288 @out = grep(!/^\#/, @out); # filter out comments
290 #print "[", join("\n", @out), "]\n";
295 foreach (@out) {