Lines Matching refs:e
30 int e = w + (i << PAGE_SHIFT); in __flush_itlb_all() local
31 invalidate_itlb_entry_no_isync(e); in __flush_itlb_all()
43 int e = w + (i << PAGE_SHIFT); in __flush_dtlb_all() local
44 invalidate_dtlb_entry_no_isync(e); in __flush_dtlb_all()
214 static int check_tlb_entry(unsigned w, unsigned e, bool dtlb) in check_tlb_entry() argument
216 unsigned tlbidx = w | (e << PAGE_SHIFT); in check_tlb_entry()
221 unsigned vpn = (r0 & PAGE_MASK) | (e << PAGE_SHIFT); in check_tlb_entry()
230 dtlb ? 'D' : 'I', w, e, vpn, in check_tlb_entry()
238 dtlb ? 'D' : 'I', w, e, r0, r1, pte); in check_tlb_entry()
259 unsigned w, e; in check_tlb_sanity() local
264 for (e = 0; e < (1 << XCHAL_DTLB_ARF_ENTRIES_LOG2); ++e) in check_tlb_sanity()
265 bug |= check_tlb_entry(w, e, true); in check_tlb_sanity()
267 for (e = 0; e < (1 << XCHAL_ITLB_ARF_ENTRIES_LOG2); ++e) in check_tlb_sanity()
268 bug |= check_tlb_entry(w, e, false); in check_tlb_sanity()