Lines Matching defs:stats
52 struct allocator_stats* stats = user;
55 stats->total += size;
56 stats->current += size;
57 if (stats->current > stats->maximum)
58 stats->maximum = stats->current;
61 function_name, size, stats->current, stats->maximum, stats->total);
71 struct allocator_stats* stats = user;
75 stats->current -= *real_block;
78 function_name, *real_block, stats->current, stats->maximum, stats->total);
85 struct allocator_stats* stats = user;
90 stats->total += size;
91 stats->current += size - *real_block;
92 if (stats->current > stats->maximum)
93 stats->maximum = stats->current;
96 function_name, *real_block, size, stats->current, stats->maximum, stats->total);
106 struct allocator_stats stats = {0};
112 .user = &stats