Home
last modified time | relevance | path

Searched refs:MallocCount (Results 1 – 1 of 1) sorted by relevance

/freebsd-13.1/stand/libsa/
H A Dzalloc_malloc.c43 static int MallocCount; variable
96 if (++MallocCount > MallocMax) in Malloc_align()
97 MallocMax = MallocCount; in Malloc_align()
151 --MallocCount; in Free()
166 if (++MallocCount > MallocMax) in Calloc()
167 MallocMax = MallocCount; in Calloc()
197 if (++MallocCount > MallocMax) in Realloc()
198 MallocMax = MallocCount; in Realloc()
226 printf("Active Allocations: %d/%d\n", MallocCount, MallocMax); in mallocstats()