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

Lines Matching defs:out

55 my $OUT; # see out()
100 $OUT = '';
105 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
108 out("<TR><TD>");
111 out("</TD></TR>");
116 out("<TR><TD>");
119 out("</TD></TR>");
123 out("</TABLE></P>");
136 print HTML $OUT;
148 # Append text to the global variable $OUT
149 sub out {
150 $OUT .= join('', @_);
154 # Append text to the global variable $OUT
156 $OUT .= join('', @_) . "\n";
202 out("<P>Measuring $method using $pat, ");
204 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
206 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
225 out("<P>Calibration pass ($CALIBRATE sec): ");
226 out("$data[0] ms, ");
227 out("$data[1] iterations = ");
228 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
247 out("Iterations per pass: $iterCount<BR>\n");
248 out("Events per iteration: $eventsPerIter<BR>\n");
252 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
284 my @out;
286 push(@out, $_);
290 @out = grep(!/^\#/, @out); # filter out comments
292 #print "[", join("\n", @out), "]\n";
297 foreach (@out) {