Home
last modified time | relevance | path

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

/linux-4.4.14/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.4.14/arch/x86/lib/
Ddelay.c53 u64 bclock, now, loops = __loops; in delay_tsc() local
58 bclock = rdtsc_ordered(); in delay_tsc()
61 if ((now - bclock) >= loops) in delay_tsc()
79 loops -= (now - bclock); in delay_tsc()
81 bclock = rdtsc_ordered(); in delay_tsc()
/linux-4.4.14/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.4.14/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.4.14/net/tipc/
Dbcast.h67 spin_lock_bh(&tipc_net(net)->bclock); in tipc_bcast_lock()
72 spin_unlock_bh(&tipc_net(net)->bclock); in tipc_bcast_unlock()
Dcore.h95 spinlock_t bclock; member
Dbcast.c513 spin_lock_init(&tipc_net(net)->bclock); in tipc_bcast_init()
/linux-4.4.14/arch/sparc/kernel/
Dtime_64.c758 unsigned long bclock, now; in __delay() local
760 bclock = tick_ops->get_tick(); in __delay()
763 } while ((now-bclock) < loops); in __delay()