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

Lines Matching defs:out

69 my $OUT; # see out()
114 $OUT = '';
119 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
122 out("<TR><TD>");
125 out("</TD></TR>");
130 out("<TR><TD>");
133 out("</TD></TR>");
137 out("</TABLE></P>");
150 print HTML $OUT;
162 # Append text to the global variable $OUT
163 sub out {
164 $OUT .= join('', @_);
168 # Append text to the global variable $OUT
170 $OUT .= join('', @_) . "\n";
216 out("<P>Measuring $method for input file @$pat[0] for encoding @$pat[2] , ");
218 out("$iterCount iterations/pass, $NUMPASSES passes</P>\n");
220 out(-$iterCount, " seconds/pass, $NUMPASSES passes</P>\n");
239 out("<P>Calibration pass ($CALIBRATE sec): ");
240 out("$data[0] ms, ");
241 out("$data[1] iterations = ");
242 out(formatSeconds(4, $timePerIter), "/iteration<BR>\n");
261 out("Iterations per pass: $iterCount<BR>\n");
262 out("Events per iteration: $eventsPerIter<BR>\n");
266 out("Raw times (ms/pass): ", join(", ", @ms_str), "<BR>\n");
299 my @out;
301 push(@out, $_);
305 @out = grep(!/^\#/, @out); # filter out comments
307 #print "[", join("\n", @out), "]\n";
312 foreach (@out) {