Lines Matching refs:next
27 cpu_data->dtlb.next = cpu_data->dtlb.first; in sh64_tlb_init()
38 cpu_data->itlb.next = cpu_data->itlb.first; in sh64_tlb_init()
51 return cpu_data->dtlb.next; in sh64_next_free_dtlb_entry()
62 cpu_data->dtlb.next += cpu_data->dtlb.step; in sh64_get_wired_dtlb_entry()
104 cpu_data->dtlb.next = entry; in sh64_put_wired_dtlb_entry()
191 unsigned long long next; in __update_tlb() local
214 next = tlbp->next; in __update_tlb()
215 __flush_tlb_slot(next); in __update_tlb()
218 : : "r" (next), "r" (pteh), "r" (ptel) ); in __update_tlb()
220 next += TLB_STEP; in __update_tlb()
221 if (next > tlbp->last) in __update_tlb()
222 next = tlbp->first; in __update_tlb()
223 tlbp->next = next; in __update_tlb()