OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:malloc_stats
(Results
1 - 17
of
17
) sorted by null
/external/compiler-rt/lib/asan/
asan_stats.cc
112
void FillMallocStatistics(AsanMallocStats *
malloc_stats
) {
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;
asan_stats.h
74
void FillMallocStatistics(AsanMallocStats *
malloc_stats
);
asan_malloc_mac.cc
296
AsanMallocStats
malloc_stats
;
local
297
FillMallocStatistics(&
malloc_stats
);
299
internal_memcpy(stats, &
malloc_stats
, sizeof(malloc_statistics_t));
asan_malloc_linux.cc
161
INTERCEPTOR(void,
malloc_stats
, void) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
libc_override_redefine.h
80
void
malloc_stats
(void) __THROW { tc_malloc_stats(); }
libc_override_gcc_and_weak.h
91
void
malloc_stats
(void) __THROW ALIAS(tc_malloc_stats);
libc_override_osx.h
201
void
malloc_stats
(void) { tc_malloc_stats(); }
function
/external/chromium_org/third_party/tcmalloc/vendor/src/
libc_override_gcc_and_weak.h
84
void
malloc_stats
(void) __THROW ALIAS(tc_malloc_stats);
libc_override_redefine.h
80
void
malloc_stats
(void) __THROW { tc_malloc_stats(); }
libc_override_osx.h
201
void
malloc_stats
(void) { tc_malloc_stats(); }
function
/external/compiler-rt/lib/sanitizer_common/tests/
standalone_malloc_test.cc
85
malloc_stats
();
/bionic/libc/upstream-dlmalloc/
malloc.h
63
#define dlmalloc_stats
malloc_stats
483
malloc_stats
();
498
malloc_stats
prints only the most commonly interesting statistics.
501
malloc_stats
is not compiled if NO_MALLOC_STATS is defined.
malloc.c
163
All operations (except
malloc_stats
and mallinfo) have execution
335
execution noticeably. Calling
malloc_stats
or mallinfo with DEBUG
432
If defined, don't compile "
malloc_stats
". This avoids calls to
[
all
...]
/external/chromium_org/base/allocator/
allocator_shim.cc
164
void
malloc_stats
(void) {
function
/external/compiler-rt/lib/msan/
msan_interceptors.cc
227
INTERCEPTOR(void,
malloc_stats
, void) {
228
// FIXME: implement, but don't call REAL(
malloc_stats
)!
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/
Makefile.am
91
-W
malloc_stats
-W mallopt -W mallinfo \
[
all
...]
/external/chromium_org/v8/test/mjsunit/
unicode-test.js
[
all
...]
Completed in 587 milliseconds