Lines Matching defs:current
41 size_t current;
56 stats->current += size;
57 if (stats->current > stats->maximum)
58 stats->maximum = stats->current;
60 printf("%s: allocate %zu bytes (current %zu maximum %zu total %zu)\n",
61 function_name, size, stats->current, stats->maximum, stats->total);
75 stats->current -= *real_block;
77 printf("%s: deallocate %zu bytes (current %zu maximum %zu total %zu)\n",
78 function_name, *real_block, stats->current, stats->maximum, stats->total);
91 stats->current += size - *real_block;
92 if (stats->current > stats->maximum)
93 stats->maximum = stats->current;
95 printf("%s: reallocate %zu bytes to %zu bytes (current %zu maximum %zu total %zu)\n",
96 function_name, *real_block, size, stats->current, stats->maximum, stats->total);