Home
last modified time | relevance | path

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

/external/lzma/C/
D7zAlloc.c18 int g_allocCount = 0; variable
29 fprintf(stderr, "\nAlloc %10u bytes; count = %10d", (unsigned)size, g_allocCount); in SzAlloc()
30 g_allocCount++; in SzAlloc()
41 g_allocCount--; in SzFree()
42 fprintf(stderr, "\nFree; count = %10d", g_allocCount); in SzFree()
DAlloc.c18 int g_allocCount = 0; variable
30 …fprintf(stderr, "\nAlloc %10d bytes, count = %10d, addr = %8X", size, g_allocCount++, (unsigned)p… in MyAlloc()
42 fprintf(stderr, "\nFree; count = %10d, addr = %8X", --g_allocCount, (unsigned)address); in MyFree()