Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/gcc/config/i386/
H A Dgmm_malloc.h37 void * aligned_ptr; in _mm_malloc() local
61 aligned_ptr = (void *) (((size_t) malloc_ptr + align) in _mm_malloc()
65 ((void **) aligned_ptr) [-1] = malloc_ptr; in _mm_malloc()
67 return aligned_ptr; in _mm_malloc()
71 _mm_free (void * aligned_ptr) in _mm_free() argument
73 if (aligned_ptr) in _mm_free()
74 free (((void **) aligned_ptr) [-1]); in _mm_free()
/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cc215 void *aligned_ptr = reinterpret_cast<void *>( in HwasanDeallocate() local
218 reinterpret_cast<Metadata *>(allocator.GetMetaData(aligned_ptr)); in HwasanDeallocate()
229 reinterpret_cast<uptr>(aligned_ptr) + orig_size); in HwasanDeallocate()
243 internal_memset(aligned_ptr, flags()->free_fill_byte, fill_size); in HwasanDeallocate()
247 TagMemoryAligned(reinterpret_cast<uptr>(aligned_ptr), TaggedSize(orig_size), in HwasanDeallocate()
250 allocator.Deallocate(t->allocator_cache(), aligned_ptr); in HwasanDeallocate()
257 allocator.Deallocate(cache, aligned_ptr); in HwasanDeallocate()
/freebsd-12.1/contrib/ntp/include/
H A Dntp_types.h245 #define INC_ALIGNED_PTR(b, m) ((void *)aligned_ptr((void *)(b), m))
249 aligned_ptr( in aligned_ptr() function