Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/compiler-rt/lib/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),
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dwrappers_c_test.cpp107 P = memalign(Align, Size); in TEST()
119 P = memalign(Alignment, Size); in TEST()
133 EXPECT_EQ(memalign(4096U, SIZE_MAX), nullptr); in TEST()
140 P = memalign(Alignment, 1024U); in TEST()
205 P = memalign(Alignment, Size); in TEST()
/openbsd/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp93 INTERCEPTOR(void *, memalign, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() argument
206 INTERCEPT_FUNCTION(memalign); in initialize_interceptors()
H A Ddone_abilist.txt74 fun:memalign=discard
H A Dlibc_ubuntu1404_abilist.txt2267 fun:memalign=uninstrumented
/openbsd/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp86 INTERCEPTOR(void *, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
/openbsd/gnu/llvm/compiler-rt/lib/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)
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cpp140 void *memalign(size_t alignment, size_t size) { in memalign() function
/openbsd/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp166 INTERCEPTOR_ALIAS(void *, memalign, SIZE_T alignment, SIZE_T size);
/openbsd/gnu/llvm/compiler-rt/lib/asan/tests/
H A Dasan_test.cpp103 int *ma = (int*)memalign(kPageSize, kPageSize); in TEST()
339 char *p = (char *)memalign(align, size); in MemalignRun()
344 TEST(AddressSanitizer, memalign) { in TEST() argument
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dpthread_allocimpl.h314 _S_start_free = (char *)memalign(__cache_line_size, __bytes_to_get); in _S_chunk_alloc()
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc87 INTERFACE WEAK void *SCUDO_PREFIX(memalign)(size_t alignment, size_t size) {
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_malloc_mac.inc403 sanitizer_zone.memalign = &__sanitizer_mz_memalign;
/openbsd/gnu/usr.bin/gcc/gcc/
H A Demit-rtl.c2075 unsigned int memalign = MEM_ALIGN (memref); local
2107 memalign
2108 = MIN (memalign,
2118 memoffset, size, memalign, GET_MODE (new));
H A Dsys-protos.h691 extern void * memalign(size_t, size_t);
/openbsd/gnu/gcc/gcc/
H A Demit-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()
H A Dsys-protos.h691 extern void * memalign(size_t, size_t);
/openbsd/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp169 INTERCEPTOR(void *, memalign, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() argument
173 #define MSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
/openbsd/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp835 TSAN_INTERCEPTOR(void*, memalign, uptr align, uptr sz) { in TSAN_INTERCEPTOR() argument
836 SCOPED_INTERCEPTOR_RAW(memalign, align, sz); in TSAN_INTERCEPTOR()
839 #define TSAN_MAYBE_INTERCEPT_MEMALIGN TSAN_INTERCEPT(memalign)
/openbsd/gnu/llvm/llvm/docs/
H A DScudoHardenedAllocator.rst79 - the allocation type (malloc, new, new[] or memalign), to detect potential
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.def1645 /// void *memalign(size_t boundary, size_t size);
1646 TLI_DEFINE_ENUM_INTERNAL(memalign)
1647 TLI_DEFINE_STRING_INTERNAL("memalign")
/openbsd/gnu/llvm/compiler-rt/lib/msan/tests/
H A Dmsan_test.cpp3501 TEST(MemorySanitizer, memalign) { in TEST() argument
3502 void *p = memalign(4096, 13); in TEST()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DBuiltins.def1114 LIBBUILTIN(memalign, "v*zz", "f", MALLOC_H, ALL_GNU_LANGUAGES)