Home
last modified time | relevance | path

Searched refs:BITL (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/arch/x86/include/
Dx86_mmu.h21 #define BITL BIT64 macro
24 #define BITL BIT macro
37 #define MMU_P BITL(0) /** Present */
38 #define MMU_RW BITL(1) /** Read-Write */
39 #define MMU_US BITL(2) /** User-Supervisor */
40 #define MMU_PWT BITL(3) /** Page Write Through */
41 #define MMU_PCD BITL(4) /** Page Cache Disable */
42 #define MMU_A BITL(5) /** Accessed */
43 #define MMU_D BITL(6) /** Dirty */
44 #define MMU_PS BITL(7) /** Page Size (non PTE)*/
[all …]
/Zephyr-latest/arch/x86/core/
Dx86_mmu.c658 if (((uintptr_t)base & BITL(47)) != 0) { in dump_ptables()