Searched refs:malloc_stats (Results 1 - 17 of 17) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_stats.cc112 void FillMallocStatistics(AsanMallocStats *malloc_stats) { argument
115 malloc_stats->blocks_in_use = stats.mallocs;
116 malloc_stats->size_in_use = stats.malloced;
117 malloc_stats->max_size_in_use = max_malloced_memory;
118 malloc_stats->size_allocated = stats.mmaped;
H A Dasan_stats.h74 void FillMallocStatistics(AsanMallocStats *malloc_stats);
H A Dasan_malloc_mac.cc296 AsanMallocStats malloc_stats; local
297 FillMallocStatistics(&malloc_stats);
299 internal_memcpy(stats, &malloc_stats, sizeof(malloc_statistics_t));
H A Dasan_malloc_linux.cc161 INTERCEPTOR(void, malloc_stats, void) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dlibc_override_redefine.h80 void malloc_stats(void) __THROW { tc_malloc_stats(); }
H A Dlibc_override_gcc_and_weak.h91 void malloc_stats(void) __THROW ALIAS(tc_malloc_stats);
H A Dlibc_override_osx.h201 void malloc_stats(void) { tc_malloc_stats(); } function
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dlibc_override_redefine.h80 void malloc_stats(void) __THROW { tc_malloc_stats(); }
H A Dlibc_override_gcc_and_weak.h84 void malloc_stats(void) __THROW ALIAS(tc_malloc_stats);
H A Dlibc_override_osx.h201 void malloc_stats(void) { tc_malloc_stats(); } function
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dstandalone_malloc_test.cc85 malloc_stats();
/external/chromium_org/base/allocator/
H A Dallocator_shim.cc164 void malloc_stats(void) { function
/external/valgrind/main/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c994 /* Valgrind's malloc_stats implementation does nothing. */ \
998 MALLOC_STATS(VG_Z_LIBC_SONAME, malloc_stats);
999 MALLOC_STATS(SO_SYN_MALLOC, malloc_stats);
1002 //MALLOC_STATS(VG_Z_LIBC_SONAME, malloc_stats);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc227 INTERCEPTOR(void, malloc_stats, void) {
228 // FIXME: implement, but don't call REAL(malloc_stats)!
1491 INTERCEPT_FUNCTION(malloc_stats);
/external/chromium_org/third_party/tcmalloc/vendor/
H A DMakefile.am91 -W malloc_stats -W mallopt -W mallinfo \
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c187 All operations (except malloc_stats and mallinfo) have execution
309 execution noticeably. Calling malloc_stats or mallinfo with DEBUG
696 #define dlmalloc_stats malloc_stats
1016 malloc_stats();
1031 malloc_stats prints only the most commonly interesting statistics.
1153 mspace_malloc_stats behaves as malloc_stats, but reports
1192 #include <stdio.h> /* for printing in malloc_stats */
/external/valgrind/main/perf/
H A Dtest_input_for_tinycc.c5654 extern void malloc_stats (void) __attribute__ ((__nothrow__));

Completed in 1047 milliseconds