Lines Matching full:pass
26 * The passes are grouped together, where (pass / passesPerGroup) specifies
27 * which group a particular pass is in. This causes every passesPerGroup
55 * -s num Starting pass
56 * -e num Ending pass
57 * -p num Execute the single pass specified by num
61 * -D float Delay in seconds performed after the last pass is executed
66 * a particular pass and leave the displayed image on the screen for an
68 * and -e options to the desired pass, along with a large value for -D.
138 // final pass and restart of framework
215 * 3. For each pass:
217 * a. If pass is first pass or in a different group from the
218 * previous pass, initialize the array of graphic buffers.
230 * e. Pass the populated list to the HWC prepare call.
232 * f. Pass the populated list to the HWC set call.
243 unsigned int pass;
255 testPrintE("Invalid command-line specified per pass delay of: "
262 // Delay between completion of final pass and restart
281 case 'n': // Num set operations per pass
284 testPrintE("Invalid command-line specified num set per pass "
290 case 's': // Starting Pass
300 testPrintE("Invalid command-line specified starting pass "
306 case 'e': // Ending Pass
316 testPrintE("Invalid command-line specified ending pass "
322 case 'p': // Run a single specified pass
332 testPrintE("Invalid command-line specified pass of: %s",
347 testPrintE(" -p Execute specified pass");
348 testPrintE(" -s Starting pass");
349 testPrintE(" -e Ending pass");
353 testPrintE(" -n Num set operations per pass");
359 testPrintE("Unexpected ending pass before starting pass");
387 // For each pass
389 for (pass = startPass; pass <= endPass; pass++) {
395 // Regenerate a new set of test frames when this pass is
396 // either the first pass or is in a different group then
397 // the previous pass. A group of passes are passes that
398 // all have the same quotient when their pass number is
400 if ((pass == startPass)
401 || ((pass / passesPerGroup) != ((pass - 1) / passesPerGroup))) {
402 initFrames(pass / passesPerGroup);
405 testPrintI("==== Starting pass: %u", pass);
408 // generated for this pass.
409 srand48(pass);
418 // Prandomly select a subset of frames to be used by this pass.
509 testPrintI("==== Completed pass: %u", pass);
522 testPrintI("Successfully completed %u passes", pass - startPass);
531 // sets the seed on each pass. Defensively set it here
533 // before the first pass will be deterministic.