Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp190 thread_stats.mmaps++; in OnMap()
191 thread_stats.mmaped += size; in OnMap()
200 thread_stats.munmaps++; in OnUnmap()
201 thread_stats.munmaped += size; in OnUnmap()
421 thread_stats.mallocs++; in Allocate()
422 thread_stats.malloced += size; in Allocate()
425 thread_stats.malloc_large++; in Allocate()
463 thread_stats.frees++; in Deallocate()
464 thread_stats.freed += user_requested_size; in Deallocate()
491 thread_stats.reallocs++; in Reallocate()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp248 thread_stats.real_frees++; in Recycle()
286 thread_stats.mmaps++; in OnMap()
287 thread_stats.mmaped += size; in OnMap()
301 thread_stats.mmaps++; in OnMapSecondary()
302 thread_stats.mmaped += size; in OnMapSecondary()
312 thread_stats.munmaps++; in OnUnmap()
313 thread_stats.munmaped += size; in OnUnmap()
635 thread_stats.mallocs++; in Allocate()
636 thread_stats.malloced += size; in Allocate()
742 thread_stats.frees++; in Deallocate()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan.cpp171 auto thread_stats = thread_list.GetThreadStats(); in HwasanFormatMemoryUsage() local
179 internal_getpid(), GetRSS(), thread_stats.n_live_threads, in HwasanFormatMemoryUsage()
180 thread_stats.total_stack_size, in HwasanFormatMemoryUsage()
181 thread_stats.n_live_threads * thread_list.MemoryUsedPerThread(), in HwasanFormatMemoryUsage()