Home
last modified time | relevance | path

Searched refs:aligned_ptr (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dpagealign_alloc.c80 void *aligned_ptr; member
90 new_memnode (void *aligned_ptr, info_t info) in new_memnode() argument
93 new_node->aligned_ptr = aligned_ptr; in new_memnode()
103 get_memnode (void *aligned_ptr) in get_memnode() argument
110 if (c->aligned_ptr == aligned_ptr) in get_memnode()
191 pagealign_free (void *aligned_ptr) in pagealign_free() argument
194 if (munmap (aligned_ptr, get_memnode (aligned_ptr)) < 0) in pagealign_free()
197 free (aligned_ptr); in pagealign_free()
199 free (get_memnode (aligned_ptr)); in pagealign_free()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dnew_opa.cc101 void* const aligned_ptr = (void *) (((uintptr_t) malloc_ptr + al) & -al);
104 ((void **) aligned_ptr)[-1] = malloc_ptr;
106 return aligned_ptr;
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dnew_opa.cc110 void* const aligned_ptr = (void *) (((uintptr_t) malloc_ptr + al) & -al);
113 ((void **) aligned_ptr)[-1] = malloc_ptr;
115 return aligned_ptr;
/netbsd-src/tests/usr.bin/xlint/lint1/
H A Dgcc_builtin_alloca.c19 char *aligned_ptr = __builtin_alloca_with_align(8, 64); in example() local
20 aligned_ptr[0] = '\0'; in example()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_allocator.cpp233 void *aligned_ptr = reinterpret_cast<void *>( in HwasanDeallocate() local
237 reinterpret_cast<Metadata *>(allocator.GetMetaData(aligned_ptr)); in HwasanDeallocate()
253 reinterpret_cast<uptr>(aligned_ptr) + orig_size); in HwasanDeallocate()
271 internal_memset(aligned_ptr, flags()->free_fill_byte, fill_size); in HwasanDeallocate()
290 TagMemoryAligned(reinterpret_cast<uptr>(aligned_ptr), TaggedSize(orig_size), in HwasanDeallocate()
294 allocator.Deallocate(t->allocator_cache(), aligned_ptr); in HwasanDeallocate()
301 allocator.Deallocate(cache, aligned_ptr); in HwasanDeallocate()