Home
last modified time | relevance | path

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

/external/libcxx/fuzzing/
Dfuzz_test.cpp42 MemoryCounters gMemoryCounters; variable
45 gMemoryCounters.totalAllocationCount = 0; in ZeroMemoryCounters()
46 gMemoryCounters.netAllocationCount = 0; in ZeroMemoryCounters()
47 gMemoryCounters.totalBytesAllocated = 0; in ZeroMemoryCounters()
56 gMemoryCounters.totalAllocationCount += 1; in operator new()
57 gMemoryCounters.netAllocationCount += 1; in operator new()
58 gMemoryCounters.totalBytesAllocated += size; in operator new()
85 gMemoryCounters.netAllocationCount -= 1; in operator delete()
151 MemoryCounters mc = gMemoryCounters; in test_one()