| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_malloc_linux.cpp | 149 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 D | tysan_interceptors.cpp | 178 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 D | dfsan_interceptors.cpp | 97 INTERCEPTOR(void *, pvalloc, SIZE_T size) { return dfsan_pvalloc(size); } in INTERCEPTOR() argument 206 INTERCEPT_FUNCTION(pvalloc); in initialize_interceptors()
|
| H A D | done_abilist.txt | 76 fun:pvalloc=discard
|
| H A D | libc_ubuntu1404_abilist.txt | 2683 fun:pvalloc=uninstrumented
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_malloc_linux.cpp | 137 INTERCEPTOR(void *, pvalloc, uptr size) { in INTERCEPTOR() argument
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_interceptors.cpp | 220 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 D | hwasan_allocation_functions.cpp | 181 INTERCEPTOR_ALIAS(void *, pvalloc, SIZE_T size);
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | wrappers_c.inc | 165 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 D | rtsan_interceptors_posix.cpp | 975 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 D | msan_interceptors.cpp | 201 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 D | tsan_interceptors_posix.cpp | 898 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 D | TargetLibraryInfo.def | 2049 /// 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 D | rtsan_test_interceptors_posix.cpp | 238 auto Func = []() { EXPECT_NE(pvalloc(2048), nullptr); }; in TEST()
|