Lines Matching +full:0 +full:x080
50 #define PG_V 0x001 /* P Valid */
51 #define PG_RW 0x002 /* R/W Read/Write */
52 #define PG_U 0x004 /* U/S User/Supervisor */
53 #define PG_NC_PWT 0x008 /* PWT Write through */
54 #define PG_NC_PCD 0x010 /* PCD Cache disable */
55 #define PG_A 0x020 /* A Accessed */
56 #define PG_M 0x040 /* D Dirty */
57 #define PG_PS 0x080 /* PS Page size (0=4k,1=4M) */
58 #define PG_PTE_PAT 0x080 /* PAT PAT index */
59 #define PG_G 0x100 /* G Global */
60 #define PG_AVAIL1 0x200 /* / Available for system */
61 #define PG_AVAIL2 0x400 /* < programmers use */
62 #define PG_AVAIL3 0x800 /* \ */
63 #define PG_PDE_PAT 0x1000 /* PAT PAT index */
89 #define PGEX_P 0x01 /* Protection violation vs. not present */
90 #define PGEX_W 0x02 /* during a Write cycle */
91 #define PGEX_U 0x04 /* access from User mode (UPL) */
92 #define PGEX_RSV 0x08 /* reserved PTE field is non-zero */
93 #define PGEX_I 0x10 /* during an instruction fetch */
105 #define PG_FRAME_PAE (0x000ffffffffff000ull)
106 #define PG_PS_FRAME_PAE (0x000fffffffe00000ull)
110 #define PG_PS_FRAME_NOPAE (0xffc00000)
115 #define KPTDI 0 /* start of kernel virtual pde's */
123 #define ISA_HOLE_START 0xa0000
124 #define ISA_HOLE_LENGTH (0x100000-ISA_HOLE_START)
148 #define pte_clear(ptep) pte_store(ptep, 0)
197 #define pmap_page_is_write_mapped(m) (((m)->a.flags & PGA_WRITEABLE) != 0)
204 return (0); in pmap_vmspace_copy()