Home
last modified time | relevance | path

Searched refs:dst_pte (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/powerpc/aim/
H A Dmmu_radix.c2546 pt_entry_t *src_pte, *dst_pte; in mmu_radix_copy() local
2618 dst_pte = VM_PAGE_TO_DMAP(dstmpte); in mmu_radix_copy()
2619 dst_pte = &dst_pte[pmap_pte_index(addr)]; in mmu_radix_copy()
2620 if (be64toh(*dst_pte) == 0 && in mmu_radix_copy()
2629 *dst_pte = htobe64(ptetemp & ~(PG_W | PG_M | in mmu_radix_copy()
/freebsd/sys/arm64/arm64/
H A Dpmap.c6709 pt_entry_t *dst_pte, mask, nbits, ptetemp, *src_pte; in pmap_copy() local
6836 dst_pte = VM_PAGE_TO_DMAP(dstmpte); in pmap_copy()
6837 dst_pte = &dst_pte[pmap_l3_index(addr)]; in pmap_copy()
6841 if (!pmap_copy_l3c(dst_pmap, dst_pte, addr, in pmap_copy()
6846 } else if (pmap_load(dst_pte) == 0 && in pmap_copy()
6860 pmap_store(dst_pte, (ptetemp & ~mask) | nbits); in pmap_copy()
/freebsd/sys/i386/i386/
H A Dpmap.c4470 pt_entry_t *src_pte, *dst_pte, ptetemp; in __CONCAT() local
4537 dst_pte = pmap_pte_quick(dst_pmap, addr); in __CONCAT()
4538 if (*dst_pte == 0 && in __CONCAT()
4546 *dst_pte = ptetemp & ~(PG_W | PG_M | in __CONCAT()
/freebsd/sys/amd64/amd64/
H A Dpmap.c8043 pt_entry_t *dst_pte, PG_A, PG_M, PG_V, ptetemp, *src_pte; in pmap_copy() local
8195 dst_pte = VM_PAGE_TO_DMAP(dstmpte); in pmap_copy()
8196 dst_pte = &dst_pte[pmap_pte_index(addr)]; in pmap_copy()
8197 if (*dst_pte == 0 && in pmap_copy()
8204 *dst_pte = ptetemp & ~(PG_W | PG_M | PG_A); in pmap_copy()