Home
last modified time | relevance | path

Searched refs:user_aligned_alloc (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_mman.h39 void *user_aligned_alloc(ThreadState *thr, uptr pc, uptr align, uptr sz);
H A Dtsan_mman.cc266 void *user_aligned_alloc(ThreadState *thr, uptr pc, uptr align, uptr sz) { in user_aligned_alloc() function
H A Dtsan_interceptors.cc808 return user_aligned_alloc(thr, pc, align, sz); in TSAN_INTERCEPTOR()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_mman.h41 void *user_aligned_alloc(ThreadState *thr, uptr pc, uptr align, uptr sz);
H A Dtsan_mman.cc268 void *user_aligned_alloc(ThreadState *thr, uptr pc, uptr align, uptr sz) { in user_aligned_alloc() function
H A Dtsan_interceptors.cc819 return user_aligned_alloc(thr, pc, align, sz); in TSAN_INTERCEPTOR()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_mman.h41 void *user_aligned_alloc(ThreadState *thr, uptr pc, uptr align, uptr sz);
H A Dtsan_mman.cpp283 void *user_aligned_alloc(ThreadState *thr, uptr pc, uptr align, uptr sz) { in user_aligned_alloc() function
H A Dtsan_interceptors_posix.cpp804 return user_aligned_alloc(thr, pc, align, sz); in TSAN_INTERCEPTOR()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
H A Dtsan_mman_test.cc192 void *p = user_aligned_alloc(thr, 0, 8, 64); in TEST()