Lines Matching refs:durations
255 # First column is name, and then they alternate between counts and durations
266 self.durations = [0] * run_count
275 str((c, d)) for (c, d) in zip(self.counts, self.durations))
279 def add_data(self, counts, durations):
281 self.durations = durations
285 self.durations[run] = duration
288 if len(self.durations) > 1:
289 self.mean_duration = statistics.mean(self.durations)
292 self.stdev_duration = statistics.stdev(self.durations)
297 for (c, d) in zip(self.counts, self.durations):
312 return self.durations[0]
352 sum(r.durations[i]