Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp151 thread_stats.mmaps++; in OnMap()
152 thread_stats.mmaped += size; in OnMap()
160 thread_stats.munmaps++; in OnUnmap()
161 thread_stats.munmaped += size; in OnUnmap()
593 thread_stats.mallocs++; in Allocate()
594 thread_stats.malloced += size; in Allocate()
597 thread_stats.malloc_large++; in Allocate()
638 thread_stats.frees++; in Deallocate()
639 thread_stats.freed += user_requested_size; in Deallocate()
666 thread_stats.reallocs++; in Reallocate()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp220 thread_stats.real_frees++; in Recycle()
250 thread_stats.mmaps++; in OnMap()
251 thread_stats.mmaped += size; in OnMap()
260 thread_stats.munmaps++; in OnUnmap()
261 thread_stats.munmaped += size; in OnUnmap()
588 thread_stats.mallocs++; in Allocate()
589 thread_stats.malloced += size; in Allocate()
592 thread_stats.malloc_large++; in Allocate()
659 thread_stats.frees++; in QuarantineChunk()
724 thread_stats.reallocs++; in Reallocate()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan.cpp143 auto thread_stats = thread_list.GetThreadStats(); in HwasanFormatMemoryUsage() local
151 internal_getpid(), GetRSS(), thread_stats.n_live_threads, in HwasanFormatMemoryUsage()
152 thread_stats.total_stack_size, in HwasanFormatMemoryUsage()
153 thread_stats.n_live_threads * thread_list.MemoryUsedPerThread(), in HwasanFormatMemoryUsage()