Home
last modified time | relevance | path

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

/freebsd/stand/libsa/
H A Dzalloc_malloc.c39 static int MallocMax; variable
93 if (++MallocCount > MallocMax) in Malloc_align()
94 MallocMax = MallocCount; in Malloc_align()
163 if (++MallocCount > MallocMax) in Calloc()
164 MallocMax = MallocCount; in Calloc()
194 if (++MallocCount > MallocMax) in Realloc()
195 MallocMax = MallocCount; in Realloc()
223 printf("Active Allocations: %d/%d\n", MallocCount, MallocMax); in mallocstats()