Home | History | Annotate | Download | only in camera2

Lines Matching refs:expList

477     Vector<int64_t> expList, durationList;
480 ParseList(expVal, expList);
485 (expList.size() == durationList.size()) &&
489 dout << "Using burst list from environment with " << expList.size() <<
504 expList.push_back(e);
510 expList.push_back(e);
521 expList.push_back(e > d ? d : e);
533 expList.push_back(e);
543 expList.push_back(e_adj);
548 dout << "Default burst sequence created with " << expList.size() <<
553 for (size_t i = 0; i < expList.size(); i++) {
554 EXPECT_GE(maxExp, expList[i])
555 << "Capture " << i << " exposure too long: " << expList[i];
556 EXPECT_LE(minExp, expList[i])
557 << "Capture " << i << " exposure too short: " << expList[i];
608 for (size_t i = 0; i < expList.size(); ++i) {
611 &expList[i], 1));
617 i, expList[i], durationList[i], sensitivityList[i]);
619 ": exposure is " << (expList[i]/1e6f) << " ms" <<
628 brightnesses.setCapacity(expList.size());
629 captureTimes.setCapacity(expList.size());
632 for (size_t i = 0; i < expList.size(); ++i) {
636 " exposure " << (expList[i]/1e6f) << " ms," <<
643 if (expList[i] * 2 > waitLimit) waitLimit = expList[i] * 2;
680 float prevEv = static_cast<float>(expList[i - 1]) * sensitivityList[i - 1];
681 float currentEv = static_cast<float>(expList[i]) * sensitivityList[i];
697 nsecs_t expectedDelta = expList[i] > durationList[i] ?
698 expList[i] : durationList[i];