Home
last modified time | relevance | path

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

/freebsd-13.1/stand/libsa/
H A Dzalloc_malloc.c42 static int MallocMax; variable
96 if (++MallocCount > MallocMax) in Malloc_align()
97 MallocMax = MallocCount; in Malloc_align()
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()