Searched defs:isPageAligned (Results 1 – 1 of 1) sorted by relevance
32 inline bool isPageAligned(void* address) { return !(reinterpret_cast<intptr_t>(address) & (pageSize… in isPageAligned() function33 inline bool isPageAligned(size_t size) { return !(size & (pageSize() - 1)); } in isPageAligned() function