Lines Matching refs:end
33 u64 clock_saved, end; in __udelay_disabled() local
35 end = get_tod_clock() + (usecs << 12); in __udelay_disabled()
45 set_clock_comparator(end); in __udelay_disabled()
47 } while (get_tod_clock_fast() < end); in __udelay_disabled()
56 u64 clock_saved, end; in __udelay_enabled() local
58 end = get_tod_clock_fast() + (usecs << 12); in __udelay_enabled()
61 if (end < S390_lowcore.clock_comparator) { in __udelay_enabled()
63 set_clock_comparator(end); in __udelay_enabled()
68 } while (get_tod_clock_fast() < end); in __udelay_enabled()
110 u64 end; in udelay_simple() local
112 end = get_tod_clock_fast() + (usecs << 12); in udelay_simple()
113 while (get_tod_clock_fast() < end) in udelay_simple()
119 u64 end; in __ndelay() local
123 end = get_tod_clock_fast() + nsecs; in __ndelay()
126 while (get_tod_clock_fast() < end) in __ndelay()