Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dwrappers_c_test.cpp48 EXPECT_LE(Size, malloc_usable_size(P)); in TEST()
78 EXPECT_LE(Size, malloc_usable_size(P)); in TEST()
121 EXPECT_LE(Size, malloc_usable_size(P)); in TEST()
128 EXPECT_LE(Size, malloc_usable_size(P)); in TEST()
151 EXPECT_LE(Alignment * 4U, malloc_usable_size(P)); in TEST()
174 EXPECT_LE(Size, malloc_usable_size(P)); in TEST()
179 EXPECT_LE(Size * 2U, malloc_usable_size(P)); in TEST()
185 EXPECT_LE(Size / 2U, malloc_usable_size(P)); in TEST()
207 EXPECT_LE(Size, malloc_usable_size(P)); in TEST()
213 EXPECT_LE(Size * 2U, malloc_usable_size(P)); in TEST()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp118 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
175 uptr (*malloc_usable_size)(void *mem); member
183 uptr (*malloc_usable_size)(void *mem); member
193 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
197 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
/openbsd-src/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp114 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
204 INTERCEPT_FUNCTION(malloc_usable_size); in initialize_interceptors()
H A Ddone_abilist.txt72 fun:malloc_usable_size=discard
H A Dlibc_ubuntu1404_abilist.txt2250 fun:malloc_usable_size=uninstrumented
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/tests/
H A Dasan_test.cpp439 EXPECT_EQ(0U, malloc_usable_size(NULL)); in TEST()
440 EXPECT_EQ(kArraySize, malloc_usable_size(array)); in TEST()
441 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr)); in TEST()
442 EXPECT_DEATH(malloc_usable_size((void*)0x123), kMallocUsableSizeErrorMsg); in TEST()
443 EXPECT_DEATH(malloc_usable_size(array + kArraySize / 2), in TEST()
446 EXPECT_DEATH(malloc_usable_size(array), kMallocUsableSizeErrorMsg); in TEST()
/openbsd-src/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp106 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
/openbsd-src/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp157 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
162 INTERCEPT_FUNCTION(malloc_usable_size)
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cpp177 void malloc_usable_size() { in malloc_usable_size() function
/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp159 INTERCEPTOR_ALIAS(uptr, malloc_usable_size, const void *ptr);
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc80 INTERFACE WEAK size_t SCUDO_PREFIX(malloc_usable_size)(const void *ptr) {
82 INTERFACE WEAK size_t SCUDO_PREFIX(malloc_usable_size)(void *ptr) {
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp235 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() argument
239 INTERCEPT_FUNCTION(malloc_usable_size)
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp765 TSAN_INTERCEPTOR(uptr, malloc_usable_size, void *p) { in TSAN_INTERCEPTOR() argument
766 SCOPED_INTERCEPTOR_RAW(malloc_usable_size, p); in TSAN_INTERCEPTOR()
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/tests/
H A Dmsan_test.cpp4703 EXPECT_EQ(0U, malloc_usable_size(NULL)); in TEST()
4704 EXPECT_EQ(kArraySize, malloc_usable_size(array)); in TEST()
4705 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr)); in TEST()
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperl5320delta.pod1212 A new probe for C<malloc_usable_size> has been added.