Searched refs:memptr (Results 1 – 10 of 10) sorted by relevance
/external/llvm/test/Transforms/InstCombine/ |
D | devirt.ll | 13 %memptr.adj = extractvalue { i64, i64 } %tmp, 1 15 %1 = getelementptr inbounds i8* %0, i64 %memptr.adj 17 %memptr.ptr = extractvalue { i64, i64 } %tmp, 0 18 %2 = and i64 %memptr.ptr, 1 19 %memptr.isvirtual = icmp ne i64 %2, 0 20 br i1 %memptr.isvirtual, label %memptr.virtual, label %memptr.nonvirtual 22 memptr.virtual: ; preds = %entry 24 %memptr.vtable = load i8** %3 25 %4 = sub i64 %memptr.ptr, 1 26 %5 = getelementptr i8* %memptr.vtable, i64 %4 [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_allocator64_testlib.cc | 82 int posix_memalign(void **memptr, size_t alignment, size_t size) { in posix_memalign() argument 83 *memptr = allocator.Allocate(&cache, size, alignment); in posix_memalign() 84 CHECK_EQ(((uptr)*memptr & (alignment - 1)), 0); in posix_memalign()
|
/external/clang/test/SemaCXX/ |
D | member-pointers-2.cpp | 18 Test0 *memptr; member 27 p = &Test0::memptr->memint; in test()
|
/external/clang/lib/Headers/ |
D | mm_malloc.h | 33 extern int posix_memalign(void **memptr, size_t alignment, size_t size); 39 extern "C" int posix_memalign(void **memptr, size_t alignment, size_t size);
|
/external/compiler-rt/lib/asan/ |
D | asan_malloc_linux.cc | 128 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { in INTERCEPTOR() argument 131 return asan_posix_memalign(memptr, alignment, size, &stack); in INTERCEPTOR()
|
D | asan_allocator.h | 150 int asan_posix_memalign(void **memptr, uptr alignment, uptr size,
|
D | asan_allocator.cc | 863 int asan_posix_memalign(void **memptr, uptr alignment, uptr size, in asan_posix_memalign() argument 868 *memptr = ptr; in asan_posix_memalign()
|
/external/clang/test/CodeGenCXX/ |
D | new.cpp | 103 struct Bmemptr { int Bmemptr::* memptr; int a; }; member
|
/external/valgrind/main/coregrind/m_replacemalloc/ |
D | vg_replace_malloc.c | 810 ( void **memptr, SizeT alignment, SizeT size ); \ 812 ( void **memptr, SizeT alignment, SizeT size ) \ 829 *memptr = mem; \
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interceptors.cc | 661 TSAN_INTERCEPTOR(int, posix_memalign, void **memptr, uptr align, uptr sz) { in TSAN_INTERCEPTOR() argument 662 SCOPED_TSAN_INTERCEPTOR(posix_memalign, memptr, align, sz); in TSAN_INTERCEPTOR() 663 *memptr = user_alloc(thr, pc, sz, align); in TSAN_INTERCEPTOR()
|