Lines Matching refs:loops
31 static void delay_loop(unsigned long loops) in delay_loop() argument
47 :"a" (loops) in delay_loop()
54 u64 bclock, now, loops = __loops; in delay_tsc() local
62 if ((now - bclock) >= loops) in delay_tsc()
80 loops -= (now - bclock); in delay_tsc()
95 u64 start, end, delay, loops = __loops; in delay_mwaitx() local
101 if (loops == 0) in delay_mwaitx()
107 delay = min_t(u64, MWAITX_MAX_LOOPS, loops); in delay_mwaitx()
124 if (loops <= end - start) in delay_mwaitx()
127 loops -= end - start; in delay_mwaitx()
159 void __delay(unsigned long loops) in __delay() argument
161 delay_fn(loops); in __delay()