PAGE_ALIGN         28 arch/powerpc/boot/page.h #define PAGE_ALIGN(addr)	_ALIGN(addr, PAGE_SIZE)
PAGE_ALIGN        216 include/linux/mm.h #define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE)
PAGE_ALIGN         55 samples/mic/mpssd/mpssd.c #define PAGE_ALIGN(addr)        _ALIGN(addr, PAGE_SIZE)
PAGE_ALIGN         37 tools/testing/scatterlist/linux/mm.h #define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE)
PAGE_ALIGN         23 tools/testing/selftests/vm/mlock-random-test.c #define PAGE_ALIGN(size, ps) (((size) + ((ps) - 1)) & ~((ps) - 1))
PAGE_ALIGN         24 tools/virtio/linux/kernel.h #define PAGE_ALIGN(x) ((x + PAGE_SIZE - 1) & PAGE_MASK)