Home
last modified time | relevance | path

Searched refs:malloc_usable_size (Results 1 – 25 of 39) sorted by relevance

12

/external/valgrind/massif/tests/
Dmalloc_usable.c14 assert(104 == malloc_usable_size(x) || in main()
15 112 == malloc_usable_size(x)); in main()
16 assert( 0 == malloc_usable_size(NULL)); in main()
17 assert( 0 == malloc_usable_size((void*)0xdeadbeef)); in main()
/external/valgrind/memcheck/tests/
Dmalloc_usable.c14 assert(99 == malloc_usable_size(x)); in main()
15 assert( 0 == malloc_usable_size(NULL)); in main()
16 assert( 0 == malloc_usable_size((void*)0xdeadbeef)); in main()
/external/compiler-rt/lib/asan/
Dasan_malloc_linux.cc99 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
153 uptr (*malloc_usable_size)(void *mem); member
161 uptr (*malloc_usable_size)(void *mem); member
171 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
175 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
/external/jemalloc/include/jemalloc/internal/
Dpublic_symbols.txt20 malloc_usable_size:je_malloc_usable_size
Dpublic_namespace.h20 #define je_malloc_usable_size JEMALLOC_N(malloc_usable_size)
/external/compiler-rt/lib/lsan/
Dlsan_interceptors.cc115 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
275 INTERCEPT_FUNCTION(malloc_usable_size); in InitializeInterceptors()
/external/jemalloc/include/jemalloc/
Djemalloc_mangle.h31 # define malloc_usable_size je_malloc_usable_size macro
Djemalloc_mangle_jet.h31 # define malloc_usable_size jet_malloc_usable_size macro
Djemalloc_defs.h.in23 * size_t malloc_usable_size(const void *ptr);
Djemalloc_protos.h.in53 JEMALLOC_EXPORT size_t JEMALLOC_NOTHROW @je_@malloc_usable_size(
Djemalloc.h350 # define malloc_usable_size je_malloc_usable_size macro
/external/compiler-rt/lib/asan/tests/
Dasan_test.cc412 EXPECT_EQ(0U, malloc_usable_size(NULL)); in TEST()
413 EXPECT_EQ(kArraySize, malloc_usable_size(array)); in TEST()
414 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr)); in TEST()
415 EXPECT_DEATH(malloc_usable_size((void*)0x123), kMallocUsableSizeErrorMsg); in TEST()
416 EXPECT_DEATH(malloc_usable_size(array + kArraySize / 2), in TEST()
419 EXPECT_DEATH(malloc_usable_size(array), kMallocUsableSizeErrorMsg); in TEST()
/external/jemalloc/test/integration/
Dallocated.c69 usize = malloc_usable_size(p); in thd_start()
Dposix_memalign.c96 total += malloc_usable_size(ps[i]); in TEST_BEGIN()
Daligned_alloc.c102 total += malloc_usable_size(ps[i]); in TEST_BEGIN()
/external/jemalloc/test/stress/
Dmicrobench.c121 malloc_usable_size(p); in malloc_mus_free()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_allocator_testlib.cc141 void malloc_usable_size() { in malloc_usable_size() function
/external/dlmalloc/
Dmalloc.h64 #define dlmalloc_usable_size malloc_usable_size
/external/valgrind/coregrind/
Dm_tooliface.c341 SizeT (*malloc_usable_size) ( ThreadId, void* ), in VG_()
355 VG_(tdict).tool_malloc_usable_size = malloc_usable_size; in VG_()
/external/deqp/framework/delibs/debase/
DdeMemory.c196 const size_t oldSize = malloc_usable_size(ptr); in deAlignedRealloc()
/external/valgrind/coregrind/m_replacemalloc/
Dvg_replace_malloc.c1055 MALLOC_USABLE_SIZE(VG_Z_LIBC_SONAME, malloc_usable_size);
1056 MALLOC_USABLE_SIZE(SO_SYN_MALLOC, malloc_usable_size);
/external/valgrind/memcheck/
Dmc_include.h155 SizeT MC_(malloc_usable_size) ( ThreadId tid, void* p );
/external/jemalloc/
DChangeLog283 - Assure that the constness of malloc_usable_size()'s return type matches that
533 - Drop const from malloc_usable_size() argument on Linux.
618 - Check for NULL pointer in malloc_usable_size().
762 realloc(), malloc_usable_size(), and free(). These functions can be used to
Dconfigure.ac397 AC_MSG_CHECKING([whether malloc_usable_size definition can use const argument])
401 size_t malloc_usable_size(const void *ptr);
517 …llocx sdallocx nallocx mallctl mallctlnametomib mallctlbymib malloc_stats_print malloc_usable_size"
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc242 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
1540 INTERCEPT_FUNCTION(malloc_usable_size); in InitializeInterceptors()

12