Searched defs:PAGE_MASK (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/boot/sys/boot/ofw/libofw/
H A Dofw_copy.c41 #define PAGE_MASK 0x0fff macro
76 destp = (void *)(dest & ~PAGE_MASK);
77 resid = dest & PAGE_MASK;
/illumos-gate/usr/src/uts/common/io/drm/
H A Ddrm_bufs.c46 #define PAGE_MASK (PAGE_SIZE-1) macro
47 #define round_page(x) (((x) + PAGE_MASK) & ~PAGE_MASK)
97 if ((offset & PAGE_MASK) || (size & PAGE_MASK))
/illumos-gate/usr/src/boot/sys/i386/include/
H A Dparam.h90 #define PAGE_MASK (PAGE_SIZE-1) macro
152 #define trunc_page(x) ((x) & ~PAGE_MASK)
153 #define round_page(x) (((x) + PAGE_MASK) & ~PAGE_MASK)
/illumos-gate/usr/src/boot/sys/amd64/include/
H A Dparam.h100 #define PAGE_MASK (PAGE_SIZE-1) macro
138 #define round_page(x) ((((unsigned long)(x)) + PAGE_MASK) & ~(PAGE_MASK))
139 #define trunc_page(x) ((unsigned long)(x) & ~(PAGE_MASK))
/illumos-gate/usr/src/cmd/mdb/intel/modules/mdb_kb/
H A Dmdb_kb.c96 #define PAGE_MASK(a) ((a) & ~(PAGE_SIZE - 1)) macro
395 size = PAGE_MASK(size);
396 off = PAGE_MASK(boff);
1452 sz = PAGE_MASK(sz);

Completed in 66 milliseconds