Home
last modified time | relevance | path

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

/external/jemalloc_new/include/jemalloc/internal/
Dpages.h5 #ifdef PAGE_MASK
6 # undef PAGE_MASK
9 #define PAGE_MASK ((size_t)(PAGE - 1)) macro
12 ((void *)((uintptr_t)(a) & ~PAGE_MASK))
15 (((s) + PAGE_MASK) & ~PAGE_MASK)
/external/autotest/client/tests/fsx/
D0001-Minor-fixes-to-PAGE_SIZE-handling.patch31 #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;
/external/erofs-utils/lib/
Ddecompress.c28 while (!src[inputmargin & ~PAGE_MASK]) in z_erofs_decompress_lz4()
29 if (!(++inputmargin & ~PAGE_MASK)) in z_erofs_decompress_lz4()
/external/fastrpc/src/
Drpcmem_android.c48 #define PAGE_MASK ~((uintptr_t)PAGE_SIZE - 1) macro
124 rinfo->aligned_buf = (void *)(((uintptr_t)rinfo->buf /*+ PAGE_SIZE*/) & PAGE_MASK); in rpcmem_alloc_internal()
/external/google-breakpad/src/third_party/mac_headers/mach/i386/
Dvm_param.h100 #define PAGE_MASK (PAGE_SIZE - 1) macro
/external/google-breakpad/src/client/ios/
Dexception_handler_no_mach.cc217 assert(((size_t)(gProtectedData.protected_buffer) & PAGE_MASK) == 0); in InstallHandlers()
/external/erofs-utils/include/erofs/
Dinternal.h39 #define PAGE_MASK (~(PAGE_SIZE-1)) macro
/external/jemalloc_new/src/
Dextent.c233 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()
Darena.c1398 && (usize & PAGE_MASK) == 0))) { in arena_palloc()
Djemalloc.c2260 if (!config_cache_oblivious && ((uintptr_t)ptr & PAGE_MASK) != 0) {
/external/python/cpython2/Lib/plat-atheos/
DIN.py521 def PAGE_ALIGN(addr): return (((addr)+PAGE_SIZE-1)&PAGE_MASK)
/external/google-breakpad/src/client/mac/handler/
Dexception_handler.cc655 assert(((size_t)(gProtectedData.protected_buffer) & PAGE_MASK) == 0); in InstallHandler()
/external/crosvm/crosvm_plugin/src/
Dlib.rs791 const PAGE_MASK: u64 = 0x0fff; in create() constant
792 if offset & PAGE_MASK != 0 || length & PAGE_MASK != 0 { in create()