HomeSort by relevance Sort by last modified time
    Searched refs:memptr (Results 1 - 19 of 19) sorted by null

  /external/clang/test/CodeGenCXX/
microsoft-abi-member-pointers.cpp 76 // Test memptr emission in a constant expression.
108 // Try a reinterpret_cast followed by a memptr conversion.
170 int POD::*memptr; member in class:POD
171 memptr = &POD::a;
172 memptr = &POD::b;
173 if (memptr)
174 memptr = 0;
177 // CHECK: %[[memptr:.*]] = alloca i32, align 4
178 // CHECK-NEXT: store i32 0, i32* %[[memptr]], align 4
179 // CHECK-NEXT: store i32 4, i32* %[[memptr]], align
189 int Polymorphic::*memptr; member in class:Polymorphic
    [all...]
new.cpp 121 struct Bmemptr { int Bmemptr::* memptr; int a; }; member in class:Bmemptr::Bmemptr
  /external/clang/test/SemaCXX/
member-pointers-2.cpp 18 Test0 *memptr; member in struct:Test0
27 p = &Test0::memptr->memint;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 119 int posix_memalign(void **memptr, size_t alignment, size_t size) {
122 *memptr = allocator.Allocate(&cache, size, alignment);
123 SANITIZER_MALLOC_HOOK(*memptr, size);
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 130 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) {
133 return asan_posix_memalign(memptr, alignment, size, &stack);
asan_malloc_mac.cc 141 INTERCEPTOR(int, posix_memalign, void **memptr, size_t alignment, size_t size) {
143 CHECK(memptr);
147 *memptr = result;
asan_allocator.h 115 int asan_posix_memalign(void **memptr, uptr alignment, uptr size,
asan_allocator2.cc 672 int asan_posix_memalign(void **memptr, uptr alignment, uptr size,
676 *memptr = ptr;
  /bionic/libc/include/
stdlib.h 64 extern int posix_memalign(void **memptr, size_t alignment, size_t size);
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.h 93 int posix_memalign(void **memptr, size_t alignment, size_t size);
jemalloc.c     [all...]
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.h 93 int posix_memalign(void **memptr, size_t alignment, size_t size);
jemalloc.c     [all...]
  /hardware/ti/omap3/dspbridge/inc/
dynamic_loader.h 310 * memptr pointer to previously allocated memory
315 void (*Deallocate) (struct Dynamic_Loader_Sym * thisptr, void *memptr);
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 91 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) {
94 *memptr = Allocate(stack, size, alignment, kAlwaysClearMemory);
  /bionic/libc/bionic/
malloc_debug_common.cpp 201 extern "C" int posix_memalign(void** memptr, size_t alignment, size_t size) {
202 return dlposix_memalign(memptr, alignment, size);
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 852 ( void **memptr, SizeT alignment, SizeT size ); \
854 ( void **memptr, SizeT alignment, SizeT size ) \
868 *memptr = mem; \
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 126 INTERCEPTOR(int, posix_memalign, void **memptr, SIZE_T alignment, SIZE_T size) {
129 CHECK_NE(memptr, 0);
130 *memptr = MsanReallocate(&stack, 0, size, alignment, false);
131 CHECK_NE(*memptr, 0);
132 __msan_unpoison(memptr, sizeof(*memptr));
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 728 TSAN_INTERCEPTOR(int, posix_memalign, void **memptr, uptr align, uptr sz) {
729 SCOPED_TSAN_INTERCEPTOR(posix_memalign, memptr, align, sz);
730 *memptr = user_alloc(thr, pc, sz, align);
    [all...]

Completed in 5029 milliseconds