Lines Matching full:stats_buf
49 static void print_stats(struct stats *stats_buf, int stats_count,
73 timersub(&stats_buf[i].end, &stats_buf[i].start, &t);
100 timersub(&stats_buf[i].end, &stats_buf[i].start, &t); /* Xi */
113 struct stats *stats_buf;
117 stats_buf = malloc(stats_count * sizeof(struct stats));
118 if (stats_buf == NULL) {
119 fprintf(stderr, "Cannot allocate stats_buf\n");
124 gettimeofday(&stats_buf[i].start, NULL);
140 gettimeofday(&stats_buf[i].end, NULL);
143 print_stats(stats_buf, stats_count, full_stats_file);