OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pte_write
(Results
1 - 3
of
3
) sorted by null
/external/kernel-headers/original/asm-mips/
pgtable.h
193
static inline int
pte_write
(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
function
249
static inline int
pte_write
(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
function
/external/kernel-headers/original/asm-arm/
pgtable.h
242
#define
pte_write
(pte) (pte_val(pte) & L_PTE_WRITE)
macro
/external/kernel-headers/original/asm-x86/
pgtable_32.h
220
static inline int
pte_write
(pte_t pte) { return (pte).pte_low & _PAGE_RW; }
function
Completed in 49 milliseconds