Home
last modified time | relevance | path

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

/xen-4.10.0-shim-comet/xen/common/
A Dxmalloc_tlsf.c34 #define MEM_ALIGN (sizeof(void *) * 2) macro
35 #define MEM_ALIGN_MASK (~(MEM_ALIGN - 1))
53 #define ROUNDUP_SIZE(r) (((r) + MEM_ALIGN - 1) & MEM_ALIGN_MASK)
582 if ( align < MEM_ALIGN ) in _xmalloc()
583 align = MEM_ALIGN; in _xmalloc()
584 size += align - MEM_ALIGN; in _xmalloc()
592 return xmalloc_whole_pages(size - align + MEM_ALIGN, align); in _xmalloc()

Completed in 3 milliseconds