Home
last modified time | relevance | path

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

/system/chre/chpp/platform/linux/
Dmemory.c34 static atomic_size_t gTotalAllocBytes = 0; variable
47 gTotalAllocBytes += size; in chppMalloc()
53 gTotalAllocBytes); in chppMalloc()
64 gTotalAllocBytes -= size; in chppFree()
68 gTotalAllocBytes); in chppFree()
91 gTotalAllocBytes += (newSize - oldSize); in chppRealloc()
93 gTotalAllocBytes -= (oldSize - newSize); in chppRealloc()
100 gTotalAllocBytes); in chppRealloc()
107 gTotalAllocBytes = 0; in chppClearTotalAllocBytes()
111 return gTotalAllocBytes; in chppGetTotalAllocBytes()