Searched refs:aligned_ptr (Results 1 – 3 of 3) sorted by relevance
37 void * aligned_ptr; in _mm_malloc() local61 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() argument73 if (aligned_ptr) in _mm_free()74 free (((void **) aligned_ptr) [-1]); in _mm_free()
215 void *aligned_ptr = reinterpret_cast<void *>( in HwasanDeallocate() local218 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()
245 #define INC_ALIGNED_PTR(b, m) ((void *)aligned_ptr((void *)(b), m))249 aligned_ptr( in aligned_ptr() function