/external/oprofile/module/ |
op_util.c | 27 pte_t * ptep, pte; local 33 pte = *ptep; 34 if (pte_present(pte)) { 35 ret = (unsigned long) pte_page_address(pte);
|
/external/kernel-headers/original/asm-arm/ |
pgalloc.h | 31 #define pgd_populate(mm,pmd,pte) BUG() 40 * Allocate one PTE table. 42 * This actually allocates two hardware PTE tables, but we wrap this up 58 pte_t *pte; local 60 pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO); 61 if (pte) { 62 clean_dcache_area(pte, sizeof(pte_t) * PTRS_PER_PTE); 63 pte += PTRS_PER_PTE; 66 return pte; 72 struct page *pte; local [all...] |
page.h | 143 typedef struct { unsigned long pte; } pte_t; member in struct:__anon6748 148 #define pte_val(x) ((x).pte)
|
/external/oprofile/module/x86/ |
op_fixmap.c | 46 pte_t * pte; local 50 pte = pte_offset(pmd, vaddr); 56 set_pte(pte, mk_pte_phys(phys, prot)); 72 pte_t * pte; local 86 pte = pte_offset(pmd, vaddr); 87 if (!pte) 91 pte_clear(pte);
|
/external/llvm/runtime/libprofile/ |
PathProfiling.c | 75 PathProfileTableEntry pte; local 76 pte.pathNumber = arrayIterator; 77 pte.pathCounter = pc; 89 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) { 140 PathProfileTableEntry pte; local 141 pte.pathNumber = hashEntry->pathNumber; 142 pte.pathCounter = hashEntry->pathCount; 144 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
|
/external/kernel-headers/original/asm-x86/ |
pgtable_32.h | 120 #define _PAGE_FILE 0x040 /* nonlinear file mapping, saved PTE; unset:swap */ 218 static inline int pte_dirty(pte_t pte) { return (pte).pte_low & _PAGE_DIRTY; } 219 static inline int pte_young(pte_t pte) { return (pte).pte_low & _PAGE_ACCESSED; } 220 static inline int pte_write(pte_t pte) { return (pte).pte_low & _PAGE_RW; } 221 static inline int pte_huge(pte_t pte) { return (pte).pte_low & _PAGE_PSE; } 226 static inline int pte_file(pte_t pte) { return (pte).pte_low & _PAGE_FILE; 313 pte_t pte = native_ptep_get_and_clear(ptep); local 321 pte_t pte; local [all...] |
/external/qemu/target-i386/ |
helper.c | 978 uint64_t ptep, pte; local 1268 uint64_t pte; local [all...] |
/external/qemu/ |
monitor.c | 1228 static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask) 1232 pte & mask, 1233 pte & PG_GLOBAL_MASK ? 'G' : '-', 1234 pte & PG_PSE_MASK ? 'P' : '-', 1235 pte & PG_DIRTY_MASK ? 'D' : '-', 1236 pte & PG_ACCESSED_MASK ? 'A' : '-', 1237 pte & PG_PCD_MASK ? 'C' : '-', 1238 pte & PG_PWT_MASK ? 'T' : '-', 1239 pte & PG_USER_MASK ? 'U' : '-', 1240 pte & PG_RW_MASK ? 'W' : '-') 1247 uint32_t pgd, pde, pte; local 1305 uint32_t pgd, pde, pte, start, end; local [all...] |