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

Lines Matching defs:out

43 my $OUT; # see out()
88 $OUT = '';
93 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
96 out("<TR><TD>");
99 out("</TD></TR>");
104 out("<TR><TD>");
107 out("</TD></TR>");
111 out("</TABLE></P>");
124 print HTML $OUT;
136 # Append text to the global variable $OUT
137 sub out {
138 $OUT .= join('', @_);
142 # Append text to the global variable $OUT
144 $OUT .= join('', @_) . "\n";
190 out("<P>Measuring $method using $pat, ");
192 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
194 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
213 out("<P>Calibration pass ($CALIBRATE sec): ");
214 out("$data[0] ms, ");
215 out("$data[1] iterations = ");
216 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
235 out("Iterations per pass: $iterCount<BR>\n");
236 out("Events per iteration: $eventsPerIter<BR>\n");
240 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
272 my @out;
274 push(@out, $_);
278 @out = grep(!/^\#/, @out); # filter out comments
280 #print "[", join("\n", @out), "]\n";
285 foreach (@out) {