Home | History | Annotate | Download | only in sun3x

Lines Matching defs:c_pte

1492 	mmu_short_pte_t *c_pte;
1500 c_pte = &c_tbl->ct_dtbl[i];
1501 if (MMU_VALID_DT(*c_pte)) {
1502 if (c_pte->attr.raw & MMU_SHORT_PTE_WIRED)
1504 pmap_remove_pte(c_pte);
1667 mmu_short_pte_t *c_pte; /* C: short page descriptor table */
1849 c_pte = mmu_ptov(MMU_PTE_PA(*b_dte));
1850 c_tbl = mmuC2tmgr(c_pte);
1893 c_pte = &c_tbl->ct_dtbl[pte_idx];
1894 if (MMU_VALID_DT(*c_pte)) { /* Is the entry currently valid? */
1905 if (c_pte->attr.raw & MMU_SHORT_PTE_WIRED) {
1933 if (MMU_PTE_PA(*c_pte) == pa) {
1944 c_pte->attr.raw &= (MMU_SHORT_PTE_M
1948 pmap_remove_pte(c_pte);
1966 c_pte->attr.raw = 0;
1978 c_pte->attr.raw |= MMU_SHORT_PTE_WIRED;
1990 if (c_pte->attr.raw & ~(MMU_SHORT_PTE_M |
1992 printf("pmap_enter: junk left in PTE at %p\n", c_pte);
1996 c_pte->attr.raw |= ((u_long) pa | MMU_DT_PAGE);
2003 c_pte->attr.raw |= MMU_SHORT_PTE_WP;
2009 c_pte->attr.raw |= MMU_SHORT_PTE_USED;
2011 c_pte->attr.raw |= MMU_SHORT_PTE_M;
2021 c_pte->attr.raw |= MMU_SHORT_PTE_CI;
2030 nidx = pteidx(c_pte);
2944 mmu_short_pte_t *c_pte;
2950 &c_pte, &a_idx, &b_idx, &pte_idx) == false)
2953 if (!MMU_VALID_DT(*c_pte))
2957 *pap = MMU_PTE_PA(*c_pte);
3396 mmu_short_pte_t *c_pte;
3402 c_pte = &c_tbl->ct_dtbl[idx];
3403 for (; sva < eva; sva += MMU_PAGE_SIZE, c_pte++) {
3404 if (MMU_VALID_DT(*c_pte)) {
3405 if (c_pte->attr.raw & MMU_SHORT_PTE_WIRED)
3407 pmap_remove_pte(c_pte);