Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp298 void *aligned_ptr = reinterpret_cast<void *>( in HwasanDeallocate() local
302 reinterpret_cast<Metadata *>(allocator.GetMetaData(aligned_ptr)); in HwasanDeallocate()
323 reinterpret_cast<uptr>(aligned_ptr) + orig_size); in HwasanDeallocate()
341 internal_memset(aligned_ptr, flags()->free_fill_byte, fill_size); in HwasanDeallocate()
361 TagMemoryAligned(reinterpret_cast<uptr>(aligned_ptr), TaggedSize(orig_size), in HwasanDeallocate()
365 allocator.Deallocate(t->allocator_cache(), aligned_ptr); in HwasanDeallocate()
373 allocator.Deallocate(cache, aligned_ptr); in HwasanDeallocate()
444 void *aligned_ptr = reinterpret_cast<void *>( in AllocationSizeFast() local
447 reinterpret_cast<Metadata *>(allocator.GetMetaData(aligned_ptr)); in AllocationSizeFast()
/freebsd/contrib/llvm-project/libcxx/src/
H A Dmemory_resource.cpp436 void* aligned_ptr = align_down(align, bytes, new_ptr, new_capacity); in __try_allocate_from_chunk()
437 if (aligned_ptr != nullptr) in __try_allocate_from_chunk()
439 return aligned_ptr; in __try_allocate_from_chunk()
445 void* aligned_ptr = align_down(align, bytes, new_ptr, new_capacity); in __try_allocate_from_chunk()
446 if (aligned_ptr != nullptr) in __try_allocate_from_chunk()
448 return aligned_ptr; in __try_allocate_from_chunk()
435 void* aligned_ptr = align_down(align, bytes, new_ptr, new_capacity); __try_allocate_from_chunk() local
444 void* aligned_ptr = align_down(align, bytes, new_ptr, new_capacity); __try_allocate_from_chunk() local
/freebsd/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