Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp149 INTERCEPTOR(void*, pvalloc, uptr size) { in INTERCEPTOR() argument
180 void* (*pvalloc)(uptr size); member
192 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
/freebsd/contrib/llvm-project/compiler-rt/lib/tysan/
H A Dtysan_interceptors.cpp178 INTERCEPTOR(void *, pvalloc, uptr size) { in INTERCEPTOR() argument
179 void *res = REAL(pvalloc)(size); in INTERCEPTOR()
184 #define TYSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp97 INTERCEPTOR(void *, pvalloc, SIZE_T size) { return dfsan_pvalloc(size); } in INTERCEPTOR() argument
206 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.cpp137 INTERCEPTOR(void *, pvalloc, uptr size) { in INTERCEPTOR() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp220 INTERCEPTOR(void*, pvalloc, uptr size) { in INTERCEPTOR() argument
225 #define LSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp181 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/
H A Drtsan_interceptors_posix.cpp975 INTERCEPTOR(void *, pvalloc, size_t size) { argument
977 return REAL(pvalloc)(size);
979 #define RTSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp201 INTERCEPTOR(void *, pvalloc, SIZE_T size) { in INTERCEPTOR() argument
205 #define MSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp898 TSAN_INTERCEPTOR(void*, pvalloc, uptr sz) { in TSAN_INTERCEPTOR() argument
904 SCOPED_INTERCEPTOR_RAW(pvalloc, sz); in TSAN_INTERCEPTOR()
907 #define TSAN_MAYBE_INTERCEPT_PVALLOC TSAN_INTERCEPT(pvalloc)
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.def2049 /// void *pvalloc(size_t size);
2050 TLI_DEFINE_ENUM_INTERNAL(pvalloc)
2051 TLI_DEFINE_STRING_INTERNAL("pvalloc")
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/
H A Drtsan_test_interceptors_posix.cpp238 auto Func = []() { EXPECT_NE(pvalloc(2048), nullptr); }; in TEST()