Lines Matching defs:size
37 size_t size;
44 size_t size,
52 static void *untracked_calloc(size_t size);
138 allocation->size = requested_size;
163 UNUSED_ATTR const char *end_canary = ((char *)ptr) + allocation->size;
180 size_t allocation_tracker_resize_for_canary(size_t size) {
181 return (!allocations) ? size : size + (2 * canary_size);
187 *((size_t *)context) += allocation->size; // Report back the unfreed byte count
188 LOG_ERROR(LOG_TAG, "%s found unfreed allocation. address: 0x%zx size: %zd bytes", __func__, (uintptr_t)allocation->ptr, allocation->size);
194 static void *untracked_calloc(size_t size) {
195 return calloc(size, 1);