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

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_malloc_linux.cc229 INTERCEPTOR(void*, pvalloc, uptr size) {
260 void* (*pvalloc)(uptr size); member in struct:MallocDebugL
272 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_malloc_linux.cc227 INTERCEPTOR(void*, pvalloc, uptr size) {
258 void* (*pvalloc)(uptr size); member in struct:MallocDebugL
270 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_malloc_linux.cpp155 INTERCEPTOR(void*, pvalloc, uptr size) {
186 void* (*pvalloc)(uptr size); member in struct:MallocDebugL
198 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cc174 void *pvalloc(size_t size) ALIAS("valloc");
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_allocation_functions.cpp167 INTERCEPTOR_ALIAS(void *, pvalloc, SIZE_T size);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_interceptors.cc165 INTERCEPTOR(void*, pvalloc, uptr size) {
170 #define LSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_interceptors.cc163 INTERCEPTOR(void*, pvalloc, uptr size) {
168 #define LSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_interceptors.cpp189 INTERCEPTOR(void*, pvalloc, uptr size) {
194 #define LSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
H A Dasan_test.cc150 char *a = (char*)pvalloc(kPageSize + 100);
155 a = (char*)pvalloc(0); // pvalloc(0) should allocate at least one page.
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_interceptors.cc213 INTERCEPTOR(void *, pvalloc, SIZE_T size) {
217 #define MSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_interceptors.cc831 TSAN_INTERCEPTOR(void*, pvalloc, uptr sz) {
837 SCOPED_INTERCEPTOR_RAW(pvalloc, sz);
840 #define TSAN_MAYBE_INTERCEPT_PVALLOC TSAN_INTERCEPT(pvalloc)
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_interceptors.cc820 TSAN_INTERCEPTOR(void*, pvalloc, uptr sz) {
826 SCOPED_INTERCEPTOR_RAW(pvalloc, sz);
829 #define TSAN_MAYBE_INTERCEPT_PVALLOC TSAN_INTERCEPT(pvalloc)
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_interceptors_posix.cpp816 TSAN_INTERCEPTOR(void*, pvalloc, uptr sz) {
822 SCOPED_INTERCEPTOR_RAW(pvalloc, sz);
825 #define TSAN_MAYBE_INTERCEPT_PVALLOC TSAN_INTERCEPT(pvalloc)
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
H A Dmsan_test.cc3475 TEST(MemorySanitizer, pvalloc) {
3477 void *p = pvalloc(PageSize + 100);
3482 p = pvalloc(0); // pvalloc(0) should allocate at least one page.

Completed in 180 milliseconds