Lines Matching defs:Duration
45 using Duration = std::chrono::duration<double>;
58 Duration MinDuration = std::chrono::seconds(0);
60 Duration MaxDuration = std::chrono::seconds(10);
91 Duration LastBatchElapsed;
93 Duration CurrentBestGuess; // The time estimation for a single run of `foo`.
101 Duration BestGuess = {};
127 Duration Elapsed = {};
132 Duration TotalTime = {};
136 Duration update(const Measurement &M) {
138 // Duration is encoded as a double (see definition).
152 Duration CurrentEstimation = {};
157 const Duration NewEstimation = RRE.update(M);
200 Duration TotalBenchmarkDuration = {};
218 const Duration Elapsed = EndTime - StartTime;