Lines Matching refs: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.
139 // final pass and restart of framework
216 * 3. For each pass:
218 * a. If pass is first pass or in a different group from the
219 * previous pass, initialize the array of graphic buffers.
244 unsigned int pass;
256 testPrintE("Invalid command-line specified per pass delay of: "
263 // Delay between completion of final pass and restart
282 case 'n': // Num set operations per pass
285 testPrintE("Invalid command-line specified num set per pass "
301 testPrintE("Invalid command-line specified starting pass "
317 testPrintE("Invalid command-line specified ending pass "
323 case 'p': // Run a single specified pass
333 testPrintE("Invalid command-line specified pass of: %s",
348 testPrintE(" -p Execute specified pass");
349 testPrintE(" -s Starting pass");
350 testPrintE(" -e Ending pass");
354 testPrintE(" -n Num set operations per pass");
360 testPrintE("Unexpected ending pass before starting pass");
388 // For each pass
390 for (pass = startPass; pass <= endPass; pass++) {
396 // Regenerate a new set of test frames when this pass is
397 // either the first pass or is in a different group then
398 // the previous pass. A group of passes are passes that
399 // all have the same quotient when their pass number is
401 if ((pass == startPass)
402 || ((pass / passesPerGroup) != ((pass - 1) / passesPerGroup))) {
403 initFrames(pass / passesPerGroup);
406 testPrintI("==== Starting pass: %u", pass);
409 // generated for this pass.
410 srand48(pass);
419 // Prandomly select a subset of frames to be used by this pass.
510 testPrintI("==== Completed pass: %u", pass);
523 testPrintI("Successfully completed %u passes", pass - startPass);
532 // sets the seed on each pass. Defensively set it here
534 // before the first pass will be deterministic.