Home
last modified time | relevance | path

Searched refs:pvalloc (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp152 INTERCEPTOR(void*, pvalloc, uptr size) { in INTERCEPTOR() argument
183 void* (*pvalloc)(uptr size); member
195 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/
H A Drtsan_interceptors.cpp332 INTERCEPTOR(void *, pvalloc, size_t size) { in INTERCEPTOR() argument
334 return REAL(pvalloc)(size); in INTERCEPTOR()
396 INTERCEPT_FUNCTION(pvalloc); in InitializeInterceptors()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp99 INTERCEPTOR(void *, pvalloc, SIZE_T size) { in INTERCEPTOR() argument
211 INTERCEPT_FUNCTION(pvalloc); in initialize_interceptors()
H A Ddone_abilist.txt76 fun:pvalloc=discard
H A Dlibc_ubuntu1404_abilist.txt2683 fun:pvalloc=uninstrumented
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp139 INTERCEPTOR(void *, pvalloc, uptr size) { in INTERCEPTOR() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp191 INTERCEPTOR(void*, pvalloc, uptr size) { in INTERCEPTOR()
196 #define LSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
189 INTERCEPTOR(void *,pvalloc,uptr size) INTERCEPTOR() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp185 INTERCEPTOR_ALIAS(void *, pvalloc, SIZE_T size);
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc165 INTERFACE WEAK void *SCUDO_PREFIX(pvalloc)(size_t size) {
174 // pvalloc(0) should allocate one page.
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/
H A Drtsan_test_interceptors.cpp140 auto Func = []() { EXPECT_NE(pvalloc(2048), nullptr); }; in TEST()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp204 INTERCEPTOR(void *, pvalloc, SIZE_T size) { in INTERCEPTOR() argument
208 #define MSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp836 TSAN_INTERCEPTOR(void*, pvalloc, uptr sz) { in TSAN_INTERCEPTOR() argument
842 SCOPED_INTERCEPTOR_RAW(pvalloc, sz); in TSAN_INTERCEPTOR()
845 #define TSAN_MAYBE_INTERCEPT_PVALLOC TSAN_INTERCEPT(pvalloc)