Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp155 INTERCEPTOR(void*, pvalloc, uptr size) { in INTERCEPTOR() argument
186 void* (*pvalloc)(uptr size); member
198 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dwrappers_c_test.cpp30 void *pvalloc(size_t size);
246 void *P = pvalloc(Size); in TEST()
252 EXPECT_EQ(pvalloc(SIZE_MAX), nullptr); in TEST()
254 P = pvalloc(Size); in TEST()
/openbsd-src/gnu/llvm/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.txt2678 fun:pvalloc=uninstrumented
/openbsd-src/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp141 INTERCEPTOR(void *, pvalloc, uptr size) { in INTERCEPTOR() argument
/openbsd-src/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp189 INTERCEPTOR(void*, pvalloc, uptr size) { in INTERCEPTOR() argument
194 #define LSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cpp171 void *pvalloc(size_t size) ALIAS("valloc");
/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp167 INTERCEPTOR_ALIAS(void *, pvalloc, SIZE_T size);
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc124 INTERFACE WEAK void *SCUDO_PREFIX(pvalloc)(size_t size) {
133 // pvalloc(0) should allocate one page.
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/tests/
H A Dasan_test.cpp149 char *a = (char*)pvalloc(kPageSize + 100); in TEST()
154 a = (char*)pvalloc(0); // pvalloc(0) should allocate at least one page. in TEST()
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp202 INTERCEPTOR(void *, pvalloc, SIZE_T size) { in INTERCEPTOR() argument
206 #define MSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp861 TSAN_INTERCEPTOR(void*, pvalloc, uptr sz) { in TSAN_INTERCEPTOR() argument
867 SCOPED_INTERCEPTOR_RAW(pvalloc, sz); in TSAN_INTERCEPTOR()
870 #define TSAN_MAYBE_INTERCEPT_PVALLOC TSAN_INTERCEPT(pvalloc)
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/tests/
H A Dmsan_test.cpp3516 TEST(MemorySanitizer, pvalloc) { in TEST() argument
3518 void *p = pvalloc(PageSize + 100); in TEST()
3523 p = pvalloc(0); // pvalloc(0) should allocate at least one page. in TEST()