Searched refs:memptr (Results 1 - 24 of 24) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_malloc_mac.cpp42 #define COMMON_MALLOC_POSIX_MEMALIGN(memptr, alignment, size) \
46 *memptr = p; \
49 SCOPED_INTERCEPTOR_RAW(posix_memalign, memptr, alignment, size); \
50 int res = user_posix_memalign(thr, pc, memptr, alignment, size);
H A Dtsan_mman.h39 int user_posix_memalign(ThreadState *thr, uptr pc, void **memptr, uptr align,
H A Dtsan_mman.cpp269 int user_posix_memalign(ThreadState *thr, uptr pc, void **memptr, uptr align, argument
282 *memptr = ptr;
H A Dtsan_interceptors_posix.cpp827 TSAN_INTERCEPTOR(int, posix_memalign, void **memptr, uptr align, uptr sz) { argument
832 *memptr = p;
835 SCOPED_INTERCEPTOR_RAW(posix_memalign, memptr, align, sz);
836 return user_posix_memalign(thr, pc, memptr, align, sz);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_malloc.cpp44 int posix_memalign(void **memptr, size_t alignment, size_t size) { argument
45 return scudoPosixMemalign(memptr, alignment, size);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_malloc_mac.cpp39 #define COMMON_MALLOC_POSIX_MEMALIGN(memptr, alignment, size) \
41 int res = lsan_posix_memalign(memptr, alignment, size, stack)
H A Dlsan_allocator.h99 int lsan_posix_memalign(void **memptr, uptr alignment, uptr size,
H A Dlsan_allocator.cpp147 int lsan_posix_memalign(void **memptr, uptr alignment, uptr size, argument
159 *memptr = ptr;
H A Dlsan_interceptors.cpp92 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) {
95 return lsan_posix_memalign(memptr, alignment, size, stack);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_mac.cpp41 #define COMMON_MALLOC_POSIX_MEMALIGN(memptr, alignment, size) \
43 int res = asan_posix_memalign(memptr, alignment, size, &stack);
H A Dasan_malloc_linux.cpp64 static int PosixMemalignFromLocalPool(void **memptr, uptr alignment, argument
81 *memptr = (void*)aligned_addr;
223 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { argument
225 return PosixMemalignFromLocalPool(memptr, alignment, size);
227 return asan_posix_memalign(memptr, alignment, size, &stack);
266 int (*posix_memalign)(void **memptr, uptr alignment, uptr size);
H A Dasan_allocator.h218 int asan_posix_memalign(void **memptr, uptr alignment, uptr size,
H A Dasan_allocator.cpp966 int asan_posix_memalign(void **memptr, uptr alignment, uptr size, argument
978 *memptr = ptr;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dhwasan_interface.h76 int __sanitizer_posix_memalign(void **memptr, size_t alignment, size_t size);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp72 int __sanitizer_posix_memalign(void **memptr, uptr alignment, uptr size) { argument
74 CHECK_NE(memptr, 0);
75 int res = hwasan_posix_memalign(memptr, alignment, size, &stack);
185 INTERCEPTOR_ALIAS(int, posix_memalign, void **memptr, SIZE_T alignment,
H A Dhwasan.h94 int hwasan_posix_memalign(void **memptr, uptr alignment, uptr size,
H A Dhwasan_allocator.cpp354 int hwasan_posix_memalign(void **memptr, uptr alignment, uptr size, argument
366 *memptr = ptr;
H A Dhwasan_interface_internal.h172 int __sanitizer_posix_memalign(void **memptr, uptr alignment, uptr size);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp316 int msan_posix_memalign(void **memptr, uptr alignment, uptr size, argument
328 *memptr = ptr;
H A Dmsan_interceptors.cpp169 INTERCEPTOR(int, posix_memalign, void **memptr, SIZE_T alignment, SIZE_T size) { argument
171 CHECK_NE(memptr, 0);
172 int res = msan_posix_memalign(memptr, alignment, size, &stack);
174 __msan_unpoison(memptr, sizeof(*memptr));
H A Dmsan.h296 int msan_posix_memalign(void **memptr, uptr alignment, uptr size,
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/
H A Djemalloc.h203 JEMALLOC_EXPORT int JEMALLOC_NOTHROW je_posix_memalign(void **memptr,
/freebsd-11-stable/contrib/jemalloc/src/
H A Djemalloc.c1617 imemalign(void **memptr, size_t alignment, size_t size, size_t min_alignment) argument
1663 *memptr = result;
1689 je_posix_memalign(void **memptr, size_t alignment, size_t size) argument
1693 ret = imemalign(memptr, alignment, size, sizeof(void *));
/freebsd-11-stable/contrib/gcc/cp/
H A Dpt.c7631 tree memptr;
7635 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
7636 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
7630 tree memptr; local

Completed in 197 milliseconds