/external/valgrind/main/massif/tests/ |
D | malloc_usable.c | 14 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/main/memcheck/tests/ |
D | malloc_usable.c | 14 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/ |
D | asan_malloc_linux.cc | 32 DECLARE_REAL_AND_INTERCEPTOR(uptr, malloc_usable_size, void *mem) 40 uptr (*malloc_usable_size)(void *mem); member 45 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)}; 121 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
D | libc_override_gcc_and_weak.h | 98 size_t malloc_usable_size(const void* p) __THROW 101 size_t malloc_usable_size(void* p) __THROW ALIAS(tc_malloc_size);
|
D | libc_override_redefine.h | 86 size_t malloc_usable_size(void* p) __THROW { return tc_malloc_size(p); } in malloc_usable_size() function
|
D | libc_override_osx.h | 205 size_t malloc_usable_size(void* p) { return tc_malloc_size(p); } in malloc_usable_size() function
|
/external/qemu/android/base/memory/ |
D | MallocUsableSize.h | 31 # define malloc_usable_size malloc_size macro
|
D | MallocUsableSize_unittest.cpp | 37 EXPECT_LE(size, ::malloc_usable_size(blocks[n])) in TEST()
|
/external/jemalloc/include/jemalloc/internal/ |
D | public_symbols.txt | 19 malloc_usable_size:je_malloc_usable_size
|
D | public_namespace.h | 19 #define je_malloc_usable_size JEMALLOC_N(malloc_usable_size)
|
/external/valgrind/main/include/ |
D | pub_tool_mallocfree.h | 50 extern SizeT VG_(malloc_usable_size)( void* p );
|
/external/jemalloc/include/jemalloc/ |
D | jemalloc_defs.h.in | 14 * size_t malloc_usable_size(const void *ptr);
|
D | jemalloc_mangle_jet.h | 30 # define malloc_usable_size jet_malloc_usable_size macro
|
D | jemalloc_mangle.h | 30 # define malloc_usable_size je_malloc_usable_size macro
|
D | jemalloc_protos.h.in | 36 JEMALLOC_EXPORT size_t @je_@malloc_usable_size(
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_test.cc | 409 EXPECT_EQ(0U, malloc_usable_size(NULL)); in TEST() 410 EXPECT_EQ(kArraySize, malloc_usable_size(array)); in TEST() 411 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr)); in TEST() 412 EXPECT_DEATH(malloc_usable_size((void*)0x123), kMallocUsableSizeErrorMsg); in TEST() 413 EXPECT_DEATH(malloc_usable_size(array + kArraySize / 2), in TEST() 416 EXPECT_DEATH(malloc_usable_size(array), kMallocUsableSizeErrorMsg); in TEST()
|
/external/compiler-rt/lib/lsan/ |
D | lsan_interceptors.cc | 130 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument 290 INTERCEPT_FUNCTION(malloc_usable_size); in InitializeInterceptors()
|
/external/jemalloc/test/integration/ |
D | posix_memalign.c | 96 total += malloc_usable_size(ps[i]); in TEST_BEGIN()
|
D | allocated.c | 69 usize = malloc_usable_size(p); in thd_start()
|
D | aligned_alloc.c | 102 total += malloc_usable_size(ps[i]); in TEST_BEGIN()
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
D | libc_override_redefine.h | 86 size_t malloc_usable_size(void* p) __THROW { return tc_malloc_size(p); } in malloc_usable_size() function
|
D | libc_override_gcc_and_weak.h | 90 size_t malloc_usable_size(void* p) __THROW ALIAS(tc_malloc_size);
|
D | libc_override_osx.h | 205 size_t malloc_usable_size(void* p) { return tc_malloc_size(p); } in malloc_usable_size() function
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_allocator_testlib.cc | 141 void malloc_usable_size() { in malloc_usable_size() function
|
/external/qemu/android/base/containers/ |
D | PodVector.cpp | 125 size_t usableSize = malloc_usable_size(mBegin); in reserve()
|