Lines Matching full:series
80 std::vector<std::tuple<tstamp, int64_t, int64_t>>& series, in driveGoal() argument
101 series.emplace_back(t1, n0, n1); in driveGoal()
112 std::tuple<tstamp, int64_t, int64_t> nm2 = series.at(seriesCnt - 3); in driveGoal()
114 std::tuple<tstamp, int64_t, int64_t> nm1 = series.at(seriesCnt - 2); in driveGoal()
142 std::vector<std::tuple<tstamp, int64_t, int64_t>>& series, in driveTime() argument
152 auto& s0 = series.at(0); in driveTime()
166 series.emplace_back(t1, n0, n1); in driveTime()
182 /* Time series of the data, the timestamp after both are read and the in driveMain()
184 std::vector<std::tuple<tstamp, int64_t, int64_t>> series; in driveMain() local
232 series.emplace_back(t1, fan0_start, fan1_start); in driveMain()
248 driveTime(seriesCnt, 128, goal, series, fanSensors); in driveMain()
252 driveGoal(seriesCnt, 128, goal, series, fanSensors); in driveMain()
256 /* Output the values and the timepoints as a time series for review. */ in driveMain()
257 for (const auto& t : series) in driveMain()