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.c2547 pt_entry_t *src_pte, *dst_pte; in mmu_radix_copy() local
2620 dst_pte = (pt_entry_t *) in mmu_radix_copy()
2622 dst_pte = &dst_pte[pmap_pte_index(addr)]; in mmu_radix_copy()
2623 if (be64toh(*dst_pte) == 0 && in mmu_radix_copy()
2632 *dst_pte = htobe64(ptetemp & ~(PG_W | PG_M | in mmu_radix_copy()
/freebsd/sys/arm64/arm64/
H A Dpmap.c6198 pt_entry_t *dst_pte, mask, nbits, ptetemp, *src_pte; in pmap_copy() local
6325 dst_pte = (pt_entry_t *) in pmap_copy()
6327 dst_pte = &dst_pte[pmap_l3_index(addr)]; in pmap_copy()
6331 if (!pmap_copy_l3c(dst_pmap, dst_pte, addr, in pmap_copy()
6336 } else if (pmap_load(dst_pte) == 0 && in pmap_copy()
6350 pmap_store(dst_pte, (ptetemp & ~mask) | nbits); in pmap_copy()
/freebsd/sys/i386/i386/
H A Dpmap.c4469 pt_entry_t *src_pte, *dst_pte, ptetemp; in __CONCAT() local
4536 dst_pte = pmap_pte_quick(dst_pmap, addr); in __CONCAT()
4537 if (*dst_pte == 0 && in __CONCAT()
4545 *dst_pte = ptetemp & ~(PG_W | PG_M | in __CONCAT()
/freebsd/sys/amd64/amd64/
H A Dpmap.c8059 pt_entry_t *dst_pte, PG_A, PG_M, PG_V, ptetemp, *src_pte; in pmap_copy() local
8211 dst_pte = (pt_entry_t *) in pmap_copy()
8213 dst_pte = &dst_pte[pmap_pte_index(addr)]; in pmap_copy()
8214 if (*dst_pte == 0 && in pmap_copy()
8221 *dst_pte = ptetemp & ~(PG_W | PG_M | PG_A); in pmap_copy()