Home
last modified time | relevance | path

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

/NextBSD/contrib/compiler-rt/lib/asan/
HDasan_malloc_linux.cc65 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
135 void *(*memalign)(uptr alignment, uptr bytes); member
145 void *(*memalign)(uptr alignment, uptr bytes); member
154 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
158 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
HDasan_malloc_mac.cc354 asan_zone.memalign = &__asan_mz_memalign; in ReplaceSystemMalloc()
/NextBSD/contrib/compiler-rt/lib/lsan/
HDlsan_interceptors.cc87 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) { in INTERCEPTOR() argument
180 ALIAS(WRAPPER_NAME(memalign));
270 INTERCEPT_FUNCTION(memalign); in InitializeInterceptors()
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/
HDsanitizer_allocator_testlib.cc111 void *memalign(size_t alignment, size_t size) { in memalign() function
/NextBSD/contrib/compiler-rt/lib/asan/tests/
HDasan_test.cc84 int *ma = (int*)memalign(kPageSize, kPageSize); in TEST()
313 char *p = (char *)memalign(align, size); in MemalignRun()
318 TEST(AddressSanitizer, memalign) { in TEST() argument
/NextBSD/contrib/jemalloc/
HDChangeLog95 + Add JEMALLOC_CXX_THROW to the memalign() function prototype, in order to
242 - Fix OOM handling in memalign() and valloc(). A variant of this bug existed
247 - Fix size class overflow handling for malloc(), posix_memalign(), memalign(),
544 - Do not enforce minimum alignment in memalign().
703 - Override memalign() and valloc() if they are provided by the system.
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDTargetLibraryInfo.def625 /// void *memalign(size_t boundary, size_t size);
626 TLI_DEFINE_ENUM_INTERNAL(memalign)
627 TLI_DEFINE_STRING_INTERNAL("memalign")
/NextBSD/cddl/contrib/opensolaris/cmd/lockstat/
HDlockstat.c1519 if ((data_buf = memalign(sizeof (uint64_t), in main()
1551 newlsp = memalign(sizeof (uint64_t), in main()
/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_interceptors.cc727 TSAN_INTERCEPTOR(void*, memalign, uptr align, uptr sz) { in TSAN_INTERCEPTOR() argument
728 SCOPED_INTERCEPTOR_RAW(memalign, align, sz); in TSAN_INTERCEPTOR()
731 #define TSAN_MAYBE_INTERCEPT_MEMALIGN TSAN_INTERCEPT(memalign)
737 SCOPED_INTERCEPTOR_RAW(memalign, align, sz); in TSAN_INTERCEPTOR()
/NextBSD/contrib/llvm/lib/Analysis/
HDTargetLibraryInfo.cpp346 TLI.setUnavailable(LibFunc::memalign); in initialize()
/NextBSD/contrib/compiler-rt/lib/msan/
HDmsan_interceptors.cc176 INTERCEPTOR(void *, memalign, SIZE_T boundary, SIZE_T size) { in INTERCEPTOR() argument
182 #define MSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
/NextBSD/contrib/gcc/
HDemit-rtl.c1844 unsigned int memalign = MEM_ALIGN (memref); in adjust_address_1() local
1881 memalign in adjust_address_1()
1882 = MIN (memalign, in adjust_address_1()
1892 memoffset, size, memalign, GET_MODE (new)); in adjust_address_1()
HDsys-protos.h691 extern void * memalign(size_t, size_t);
/NextBSD/contrib/llvm/lib/Transforms/IPO/
HDFunctionAttrs.cpp1064 case LibFunc::memalign: in inferPrototypeAttributes()
/NextBSD/sys/contrib/octeon-sdk/cvmx-malloc/
HDmalloc.c479 #define public_mEMALIGn memalign
/NextBSD/contrib/compiler-rt/lib/msan/tests/
HDmsan_test.cc3176 TEST(MemorySanitizer, memalign) { in TEST() argument
3177 void *p = memalign(4096, 13); in TEST()
/NextBSD/contrib/compiler-rt/lib/dfsan/
HDlibc_ubuntu1404_abilist.txt2266 fun:memalign=uninstrumented
/NextBSD/gnu/usr.bin/grep/
HDChangeLog2455 * configure.in: Remove unused checks for memalign and unsigned char.