aligned_alloc
ret = *freeptr = aligned_alloc(alignment, num);
void * aligned_alloc(size_t, size_t) __malloc_like __alloc_align(1)
return (aligned_alloc(align, roundup(size, align)));
#define je_aligned_alloc JEMALLOC_N(aligned_alloc)
# define je_aligned_alloc aligned_alloc
__weak_reference(__aligned_alloc, aligned_alloc);
lck = aligned_alloc(CACHE_LINE_SIZE,
prwlock = aligned_alloc(CACHE_LINE_SIZE,
*newbufpp = aligned_alloc(LIBUFS_BUFALIGN, size); \
while ((retval = aligned_alloc(LIBUFS_BUFALIGN, size)) == NULL)
if ((chunk = aligned_alloc(PAGE_SIZE, max_xfer_size)) == NULL)
buf = aligned_alloc(PAGE_SIZE, max_xfer_size);
buf = aligned_alloc(PAGE_SIZE, max_xfer_size);
zfs = aligned_alloc(align, roundup2(sizeof(*zfs), align));