Lines Matching refs:pudp
182 pud_t *pudp = (pud_t *) ptep; in huge_ptep_get_and_clear() local
185 pudp_xchg_direct(mm, addr, pudp, __pud(_REGION3_ENTRY_EMPTY)); in huge_ptep_get_and_clear()
196 pud_t *pudp; in huge_pte_alloc() local
202 pudp = pud_alloc(mm, p4dp, addr); in huge_pte_alloc()
203 if (pudp) { in huge_pte_alloc()
205 return (pte_t *) pudp; in huge_pte_alloc()
207 pmdp = pmd_alloc(mm, pudp, addr); in huge_pte_alloc()
218 pud_t *pudp; in huge_pte_offset() local
225 pudp = pud_offset(p4dp, addr); in huge_pte_offset()
226 if (pud_present(*pudp)) { in huge_pte_offset()
227 if (pud_leaf(*pudp)) in huge_pte_offset()
228 return (pte_t *) pudp; in huge_pte_offset()
229 pmdp = pmd_offset(pudp, addr); in huge_pte_offset()