Home
last modified time | relevance | path

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

/titanic_53/usr/src/boot/lib/libstand/
H A Dzalloc_malloc.c43 static int MallocCount; variable
74 if (++MallocCount > MallocMax) in Malloc()
75 MallocMax = MallocCount; in Malloc()
120 --MallocCount; in Free()
135 if (++MallocCount > MallocMax) in Calloc()
136 MallocMax = MallocCount; in Calloc()
164 if (++MallocCount > MallocMax) in Realloc()
165 MallocMax = MallocCount; in Realloc()
193 printf("Active Allocations: %d/%d\n", MallocCount, MallocMax); in mallocstats()