Home
last modified time | relevance | path

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

/NextBSD/contrib/compiler-rt/lib/asan/
HDasan_malloc_linux.cc82 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
136 uptr (*malloc_usable_size)(void *mem); member
144 uptr (*malloc_usable_size)(void *mem); member
154 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
158 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
/NextBSD/lib/libc/stdlib/jemalloc/
HDSymbol.map13 malloc_usable_size;
HDMakefile.inc33 jemalloc.3 malloc_usable_size.3 \
/NextBSD/contrib/jemalloc/include/jemalloc/internal/
HDpublic_namespace.h20 #define je_malloc_usable_size JEMALLOC_N(malloc_usable_size)
/NextBSD/contrib/compiler-rt/lib/lsan/
HDlsan_interceptors.cc115 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
275 INTERCEPT_FUNCTION(malloc_usable_size); in InitializeInterceptors()
/NextBSD/contrib/compiler-rt/lib/asan/tests/
HDasan_test.cc409 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()
/NextBSD/contrib/jemalloc/include/jemalloc/
HDjemalloc.h70 # define je_malloc_usable_size malloc_usable_size
334 # define malloc_usable_size je_malloc_usable_size macro
HDjemalloc_FreeBSD.h130 __weak_reference(__malloc_usable_size, malloc_usable_size);
/NextBSD/sys/contrib/octeon-sdk/cvmx-malloc/
HDmalloc.h173 extern size_t malloc_usable_size __MALLOC_P ((__malloc_ptr_t __ptr));
HDmalloc.c487 #define public_mUSABLe malloc_usable_size
/NextBSD/include/
HDmalloc_np.h57 size_t malloc_usable_size(const void *ptr);
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/
HDsanitizer_allocator_testlib.cc141 void malloc_usable_size() { in malloc_usable_size() function
/NextBSD/contrib/tcsh/
HDtc.alloc.c455 size_t malloc_usable_size(M_U_S_CONST void *);
457 malloc_usable_size(M_U_S_CONST void *ptr) in malloc_usable_size() function
HDFixes21 91. Provide support for malloc_usable_size() so that linux works again
/NextBSD/contrib/jemalloc/
HDFREEBSD-diffs36 + <para>The <function>malloc_usable_size<parameter/></function> and
260 +__weak_reference(__malloc_usable_size, malloc_usable_size);
HDChangeLog210 - Assure that the constness of malloc_usable_size()'s return type matches that
460 - Drop const from malloc_usable_size() argument on Linux.
545 - Check for NULL pointer in malloc_usable_size().
689 realloc(), malloc_usable_size(), and free(). These functions can be used to
/NextBSD/contrib/compiler-rt/lib/msan/
HDmsan_interceptors.cc242 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
1496 INTERCEPT_FUNCTION(malloc_usable_size); in InitializeInterceptors()
/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_interceptors.cc571 TSAN_INTERCEPTOR(uptr, malloc_usable_size, void *p) { in TSAN_INTERCEPTOR() argument
572 SCOPED_INTERCEPTOR_RAW(malloc_usable_size, p); in TSAN_INTERCEPTOR()
/NextBSD/contrib/compiler-rt/lib/msan/tests/
HDmsan_test.cc4281 EXPECT_EQ(0U, malloc_usable_size(NULL)); in TEST()
4282 EXPECT_EQ(kArraySize, malloc_usable_size(array)); in TEST()
4283 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr)); in TEST()
/NextBSD/contrib/compiler-rt/lib/dfsan/
HDlibc_ubuntu1404_abilist.txt2249 fun:malloc_usable_size=uninstrumented
/NextBSD/contrib/sqlite3/
HDsqlite3.c17231 # define SQLITE_MALLOCSIZE(x) malloc_usable_size(x)