Lines Matching full:explist
479 Vector<int64_t> expList, durationList;
482 ParseList(expVal, expList);
487 (expList.size() == durationList.size()) &&
491 dout << "Using burst list from environment with " << expList.size() <<
506 expList.push_back(e);
512 expList.push_back(e);
523 expList.push_back(e > d ? d : e);
535 expList.push_back(e);
545 expList.push_back(e_adj);
550 dout << "Default burst sequence created with " << expList.size() <<
555 for (size_t i = 0; i < expList.size(); i++) {
556 EXPECT_GE(maxExp, expList[i])
557 << "Capture " << i << " exposure too long: " << expList[i];
558 EXPECT_LE(minExp, expList[i])
559 << "Capture " << i << " exposure too short: " << expList[i];
610 for (size_t i = 0; i < expList.size(); ++i) {
613 &expList[i], 1));
619 i, expList[i], durationList[i], sensitivityList[i]);
621 ": exposure is " << (expList[i]/1e6f) << " ms" <<
630 brightnesses.setCapacity(expList.size());
631 captureTimes.setCapacity(expList.size());
634 for (size_t i = 0; i < expList.size(); ++i) {
638 " exposure " << (expList[i]/1e6f) << " ms," <<
645 if (expList[i] * 2 > waitLimit) waitLimit = expList[i] * 2;
682 float prevEv = static_cast<float>(expList[i - 1]) * sensitivityList[i - 1];
683 float currentEv = static_cast<float>(expList[i]) * sensitivityList[i];
699 nsecs_t expectedDelta = expList[i] > durationList[i] ?
700 expList[i] : durationList[i];