/src/sys/arch/sun2/sun2/ |
db_memrw.c | 104 int oldpte, tmppte; local in function:db_write_text 144 tmppte = oldpte; 145 tmppte |= (PG_WRITE | PG_NC); 147 set_pte(pgva, tmppte);
|
db_memrw.c | 104 int oldpte, tmppte; local in function:db_write_text 144 tmppte = oldpte; 145 tmppte |= (PG_WRITE | PG_NC); 147 set_pte(pgva, tmppte);
|
/src/sys/arch/sun3/sun3/ |
db_memrw.c | 104 int oldpte, tmppte; local in function:db_write_text 147 tmppte = oldpte; 149 tmppte |= (PG_WRITE | PG_NC); 152 tmppte &= ~MMU_SHORT_PTE_WP; 153 tmppte |= MMU_SHORT_PTE_CI; 156 set_pte(pgva, tmppte);
|
db_memrw.c | 104 int oldpte, tmppte; local in function:db_write_text 147 tmppte = oldpte; 149 tmppte |= (PG_WRITE | PG_NC); 152 tmppte &= ~MMU_SHORT_PTE_WP; 153 tmppte |= MMU_SHORT_PTE_CI; 156 set_pte(pgva, tmppte);
|
/src/sys/arch/m68k/m68k/ |
db_memrw.c | 112 pt_entry_t *pte, oldpte, tmppte; local in function:db_write_text 157 tmppte = (oldpte & ~PG_RO) | PG_RW | PG_CI; 158 *pte = tmppte;
|
db_memrw.c | 112 pt_entry_t *pte, oldpte, tmppte; local in function:db_write_text 157 tmppte = (oldpte & ~PG_RO) | PG_RW | PG_CI; 158 *pte = tmppte;
|
/src/sys/arch/arm/arm32/ |
vm_machdep.c | 281 pt_entry_t *pte, oldpte, tmppte; local in function:ktext_write 317 tmppte = l2pte_set_writable(oldpte); 318 *pte = tmppte;
|
vm_machdep.c | 281 pt_entry_t *pte, oldpte, tmppte; local in function:ktext_write 317 tmppte = l2pte_set_writable(oldpte); 318 *pte = tmppte;
|