Lines Matching refs:now
158 unsigned long long now; in __timer_running() local
159 rdtscll(now); in __timer_running()
160 return now < timer_timeout; in __timer_running()
165 unsigned long long now; in udelay() local
166 rdtscll(now); in udelay()
167 timer_timeout = now + usecs * ((clocks_per_tick * TICKS_PER_SEC)/(1000*1000)); in udelay()
172 unsigned long long now; in ndelay() local
173 rdtscll(now); in ndelay()
174 timer_timeout = now + nsecs * ((clocks_per_tick * TICKS_PER_SEC)/(1000*1000*1000)); in ndelay()
180 unsigned long long now; in load_timer2() local
182 rdtscll(now); in load_timer2()
184 timer_timeout = now + clocks; in load_timer2()