Home
last modified time | relevance | path

Searched refs:bclock (Results 1 – 5 of 5) sorted by relevance

/linux-4.1.27/arch/parisc/lib/
Ddelay.c33 u32 bclock, now, loops = __loops; in __cr16_delay() local
38 bclock = mfctl(16); in __cr16_delay()
41 if ((now - bclock) >= loops) in __cr16_delay()
60 loops -= (now - bclock); in __cr16_delay()
62 bclock = mfctl(16); in __cr16_delay()
/linux-4.1.27/arch/x86/lib/
Ddelay.c52 u32 bclock, now, loops = __loops; in delay_tsc() local
58 rdtscl(bclock); in delay_tsc()
62 if ((now - bclock) >= loops) in delay_tsc()
80 loops -= (now - bclock); in delay_tsc()
83 rdtscl(bclock); in delay_tsc()
/linux-4.1.27/arch/avr32/lib/
Ddelay.c31 unsigned bclock, now; in __delay() local
33 bclock = sysreg_read(COUNT); in __delay()
36 } while ((now - bclock) < loops); in __delay()
/linux-4.1.27/arch/metag/lib/
Ddelay.c29 unsigned long bclock, now; in __delay() local
31 rdtimer(bclock); in __delay()
35 } while ((now-bclock) < loops); in __delay()
/linux-4.1.27/arch/sparc/kernel/
Dtime_64.c785 unsigned long bclock, now; in __delay() local
787 bclock = tick_ops->get_tick(); in __delay()
790 } while ((now-bclock) < loops); in __delay()