Lines Matching refs:expList
482 Vector<int64_t> expList, durationList; in TEST_F() local
485 ParseList(expVal, expList); in TEST_F()
490 (expList.size() == durationList.size()) && in TEST_F()
494 dout << "Using burst list from environment with " << expList.size() << in TEST_F()
509 expList.push_back(e); in TEST_F()
515 expList.push_back(e); in TEST_F()
526 expList.push_back(e > d ? d : e); in TEST_F()
538 expList.push_back(e); in TEST_F()
548 expList.push_back(e_adj); in TEST_F()
553 dout << "Default burst sequence created with " << expList.size() << in TEST_F()
558 for (size_t i = 0; i < expList.size(); i++) { in TEST_F()
559 EXPECT_GE(maxExp, expList[i]) in TEST_F()
560 << "Capture " << i << " exposure too long: " << expList[i]; in TEST_F()
561 EXPECT_LE(minExp, expList[i]) in TEST_F()
562 << "Capture " << i << " exposure too short: " << expList[i]; in TEST_F()
613 for (size_t i = 0; i < expList.size(); ++i) { in TEST_F()
616 &expList[i], 1)); in TEST_F()
622 i, expList[i], durationList[i], sensitivityList[i]); in TEST_F()
624 ": exposure is " << (expList[i]/1e6f) << " ms" << in TEST_F()
633 brightnesses.setCapacity(expList.size()); in TEST_F()
634 captureTimes.setCapacity(expList.size()); in TEST_F()
637 for (size_t i = 0; i < expList.size(); ++i) { in TEST_F()
641 " exposure " << (expList[i]/1e6f) << " ms," << in TEST_F()
648 if (expList[i] * 2 > waitLimit) waitLimit = expList[i] * 2; in TEST_F()
685 float prevEv = static_cast<float>(expList[i - 1]) * sensitivityList[i - 1]; in TEST_F()
686 float currentEv = static_cast<float>(expList[i]) * sensitivityList[i]; in TEST_F()
702 nsecs_t expectedDelta = expList[i] > durationList[i] ? in TEST_F()
703 expList[i] : durationList[i]; in TEST_F()