Lines Matching full:series
67 std::vector<std::tuple<tstamp, int64_t, int64_t>>& series, in driveGoal() argument
88 series.emplace_back(t1, n0, n1); in driveGoal()
99 std::tuple<tstamp, int64_t, int64_t> nm2 = series.at(seriesCnt - 3); in driveGoal()
101 std::tuple<tstamp, int64_t, int64_t> nm1 = series.at(seriesCnt - 2); in driveGoal()
129 std::vector<std::tuple<tstamp, int64_t, int64_t>>& series, in driveTime() argument
139 auto& s0 = series.at(0); in driveTime()
153 series.emplace_back(t1, n0, n1); in driveTime()
169 /* Time series of the data, the timestamp after both are read and the in driveMain()
171 std::vector<std::tuple<tstamp, int64_t, int64_t>> series; in driveMain() local
219 series.emplace_back(t1, fan0_start, fan1_start); in driveMain()
235 driveTime(seriesCnt, 128, goal, series, fanSensors); in driveMain()
239 driveGoal(seriesCnt, 128, goal, series, fanSensors); in driveMain()
243 /* Output the values and the timepoints as a time series for review. */ in driveMain()
244 for (const auto& t : series) in driveMain()