Lines Matching refs:loops
30 static void delay_loop(unsigned long loops) in delay_loop() argument
46 :"a" (loops) in delay_loop()
53 u64 bclock, now, loops = __loops; in delay_tsc() local
61 if ((now - bclock) >= loops) in delay_tsc()
79 loops -= (now - bclock); in delay_tsc()
94 u64 start, end, delay, loops = __loops; in delay_mwaitx() local
99 delay = min_t(u64, MWAITX_MAX_LOOPS, loops); in delay_mwaitx()
116 if (loops <= end - start) in delay_mwaitx()
119 loops -= end - start; in delay_mwaitx()
151 void __delay(unsigned long loops) in __delay() argument
153 delay_fn(loops); in __delay()