Searched refs:PAGE_MASK (Results 1 – 13 of 13) sorted by relevance
5 #ifdef PAGE_MASK6 # undef PAGE_MASK9 #define PAGE_MASK ((size_t)(PAGE - 1)) macro12 ((void *)((uintptr_t)(a) & ~PAGE_MASK))15 (((s) + PAGE_MASK) & ~PAGE_MASK)
31 #define PAGE_MASK (PAGE_SIZE - 1)44 pg_offset = offset & PAGE_MASK;46 + map_size = (pg_offset + size + PAGE_MASK) & ~PAGE_MASK;53 pg_offset = offset & PAGE_MASK;55 + map_size = (pg_offset + size + PAGE_MASK) & ~PAGE_MASK;
28 while (!src[inputmargin & ~PAGE_MASK]) in z_erofs_decompress_lz4()29 if (!(++inputmargin & ~PAGE_MASK)) in z_erofs_decompress_lz4()
48 #define PAGE_MASK ~((uintptr_t)PAGE_SIZE - 1) macro124 rinfo->aligned_buf = (void *)(((uintptr_t)rinfo->buf /*+ PAGE_SIZE*/) & PAGE_MASK); in rpcmem_alloc_internal()
100 #define PAGE_MASK (PAGE_SIZE - 1) macro
217 assert(((size_t)(gProtectedData.protected_buffer) & PAGE_MASK) == 0); in InstallHandlers()
39 #define PAGE_MASK (~(PAGE_SIZE-1)) macro
233 assert((size & PAGE_MASK) == 0); in extent_size_quantize_floor()259 assert((size & PAGE_MASK) == 0); in extent_size_quantize_ceil()1886 assert((offset & PAGE_MASK) == 0); in extent_purge_lazy_default()1888 assert((length & PAGE_MASK) == 0); in extent_purge_lazy_default()1933 assert((offset & PAGE_MASK) == 0); in extent_purge_forced_default()1935 assert((length & PAGE_MASK) == 0); in extent_purge_forced_default()
1398 && (usize & PAGE_MASK) == 0))) { in arena_palloc()
2260 if (!config_cache_oblivious && ((uintptr_t)ptr & PAGE_MASK) != 0) {
521 def PAGE_ALIGN(addr): return (((addr)+PAGE_SIZE-1)&PAGE_MASK)
655 assert(((size_t)(gProtectedData.protected_buffer) & PAGE_MASK) == 0); in InstallHandler()
791 const PAGE_MASK: u64 = 0x0fff; in create() constant792 if offset & PAGE_MASK != 0 || length & PAGE_MASK != 0 { in create()