Lines Matching refs:end
37 u64 end; in __udelay_disabled() local
39 end = get_tod_clock() + (usecs << 12); in __udelay_disabled()
45 set_clock_comparator(end); in __udelay_disabled()
55 u64 clock_saved, end; in __udelay_enabled() local
57 end = get_tod_clock_fast() + (usecs << 12); in __udelay_enabled()
60 if (end < S390_lowcore.clock_comparator) { in __udelay_enabled()
62 set_clock_comparator(end); in __udelay_enabled()
67 } while (get_tod_clock_fast() < end); in __udelay_enabled()
109 u64 end; in udelay_simple() local
111 end = get_tod_clock_fast() + (usecs << 12); in udelay_simple()
112 while (get_tod_clock_fast() < end) in udelay_simple()
118 u64 end; in __ndelay() local
122 end = get_tod_clock_fast() + nsecs; in __ndelay()
125 while (get_tod_clock_fast() < end) in __ndelay()