Searched refs:PAGE_ALIGN (Results 1 – 3 of 3) sorted by relevance
23 #define PAGE_ALIGN(size, ps) (((size) + ((ps) - 1)) & ~((ps) - 1)) macro190 if (locked_vm_size > PAGE_ALIGN(alloc_size, page_size) + page_size) { in test_mlock_within_limit()
279 #undef PAGE_ALIGN
521 def PAGE_ALIGN(addr): return (((addr)+PAGE_SIZE-1)&PAGE_MASK) function