Home
last modified time | relevance | path

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

/freebsd-12.1/stand/libsa/
H A Dzalloc_malloc.c43 static int MallocCount; variable
92 if (++MallocCount > MallocMax) in Malloc_align()
93 MallocMax = MallocCount; in Malloc_align()
142 --MallocCount; in Free()
157 if (++MallocCount > MallocMax) in Calloc()
158 MallocMax = MallocCount; in Calloc()
188 if (++MallocCount > MallocMax) in Realloc()
189 MallocMax = MallocCount; in Realloc()
217 printf("Active Allocations: %d/%d\n", MallocCount, MallocMax); in mallocstats()