Home
last modified time | relevance | path

Searched refs:memalign (Results 1 – 25 of 56) sorted by relevance

123

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_malloc_linux.cpp98 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
174 void *(*memalign)(uptr alignment, uptr bytes); member
184 void *(*memalign)(uptr alignment, uptr bytes); member
193 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
197 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_malloc_linux.cc168 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
246 void *(*memalign)(uptr alignment, uptr bytes); member
256 void *(*memalign)(uptr alignment, uptr bytes); member
265 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
269 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_malloc_linux.cc170 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
248 void *(*memalign)(uptr alignment, uptr bytes); member
258 void *(*memalign)(uptr alignment, uptr bytes); member
267 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
271 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
/netbsd-src/external/gpl2/libmalloc/dist/
H A DMakefile27 gmalloc = valloc.c malloc.c free.c cfree.c realloc.c calloc.c morecore.c memalign.c
28 sources = valloc.c malloc.c free.c cfree.c realloc.c calloc.c morecore.c memalign.c mcheck.c mtrace…
29 objects = valloc.o malloc.o free.o cfree.o realloc.o calloc.o morecore.o memalign.o mcheck.o mtrace…
H A Dvalloc.c48 return memalign (pagesize, size);
H A Dmemalign.c28 memalign (alignment, size) in memalign() function
H A Dmalloc.h109 extern __ptr_t memalign __P ((__malloc_size_t __alignment,
H A Dgmalloc.c111 extern __ptr_t memalign __P ((__malloc_size_t __alignment,
347 return memalign (pagesize, size);
1312 memalign (alignment, size) in memalign() function
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dnew_opa.cc38 extern "C" void *memalign(std::size_t boundary, std::size_t size);
56 void *memalign(size_t alignment, size_t size);
86 return memalign (al, sz);
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dnew_opa.cc38 extern "C" void *memalign(std::size_t boundary, std::size_t size);
56 void *memalign(size_t alignment, size_t size);
95 return memalign (al, sz);
/netbsd-src/external/gpl3/gcc.old/dist/libgomp/
H A Dalloc.c77 extern void *memalign (size_t, size_t); in gomp_aligned_alloc()
78 ret = memalign (al, size); in gomp_aligned_alloc()
/netbsd-src/external/gpl3/gcc/dist/libgomp/
H A Dalloc.c70 extern void *memalign (size_t, size_t); in gomp_aligned_alloc()
71 ret = memalign (al, size); in gomp_aligned_alloc()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/libcollector/
H A Dheaptrace.c387 memalign (size_t align, size_t size) in memalign() function
392 if (NULL_PTR (memalign)) in memalign()
396 ret = (void *) CALL_REAL (memalign)(align, size); in memalign()
400 ret = (void *) CALL_REAL (memalign)(align, size); in memalign()
421 if (NULL_PTR (memalign)) in valloc()
/netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/
H A Dheaptrace.c379 memalign (size_t align, size_t size) in memalign() function
384 if (NULL_PTR (memalign)) in memalign()
388 ret = (void *) CALL_REAL (memalign)(align, size); in memalign()
392 ret = (void *) CALL_REAL (memalign)(align, size); in memalign()
413 if (NULL_PTR (memalign)) in valloc()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/
H A Dcrossconfig.m4129 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
190 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
199 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
256 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A Dcrossconfig.m4133 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
195 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
205 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
263 AC_CHECK_FUNCS(aligned_alloc posix_memalign memalign _aligned_malloc)
/netbsd-src/external/gpl2/libmalloc/lib/
H A DMakefile10 SRCS+= memalign.c valloc.c mcheck.c mtrace.c mstats.c vm-limit.c
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_interceptors.cc101 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) { in INTERCEPTOR() argument
106 #define LSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
/netbsd-src/external/bsd/jemalloc/dist/src/
H A Dzone.c29 void *(*memalign)(struct _malloc_zone_t *, size_t, size_t); member
345 jemalloc_zone.memalign = zone_memalign; in zone_init()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_interceptors.cc99 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) { in INTERCEPTOR() argument
104 #define LSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_interceptors.cpp122 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) { in INTERCEPTOR() argument
127 #define LSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cc143 void *memalign(size_t alignment, size_t size) { in memalign() function
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_allocation_functions.cpp166 INTERCEPTOR_ALIAS(void *, memalign, SIZE_T alignment, SIZE_T size);
/netbsd-src/lib/librumpuser/
H A Dconfigure.ac30 getenv_r posix_memalign memalign aligned_alloc \
H A Drumpuser_port.h187 *ptr = memalign(align, size); in posix_memalign()

123