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()
216 static int check_tlb_entry(unsigned w, unsigned e, bool dtlb) in check_tlb_entry() argument
218 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()
240 dtlb ? 'D' : 'I', w, e, r0, r1, pte); in check_tlb_entry()
261 unsigned w, e; in check_tlb_sanity() local
266 for (e = 0; e < (1 << XCHAL_DTLB_ARF_ENTRIES_LOG2); ++e) in check_tlb_sanity()
267 bug |= check_tlb_entry(w, e, true); in check_tlb_sanity()
269 for (e = 0; e < (1 << XCHAL_ITLB_ARF_ENTRIES_LOG2); ++e) in check_tlb_sanity()
270 bug |= check_tlb_entry(w, e, false); in check_tlb_sanity()