Home
last modified time | relevance | path

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

/Linux-v4.19/arch/parisc/lib/
Ddelay.c32 u32 bclock, now, loops = __loops; in __cr16_delay() local
37 bclock = mfctl(16); in __cr16_delay()
40 if ((now - bclock) >= loops) in __cr16_delay()
59 loops -= (now - bclock); in __cr16_delay()
61 bclock = mfctl(16); in __cr16_delay()
/Linux-v4.19/arch/x86/lib/
Ddelay.c54 u64 bclock, now, loops = __loops; in delay_tsc() local
59 bclock = rdtsc_ordered(); in delay_tsc()
62 if ((now - bclock) >= loops) in delay_tsc()
80 loops -= (now - bclock); in delay_tsc()
82 bclock = rdtsc_ordered(); in delay_tsc()
/Linux-v4.19/net/tipc/
Dbcast.h97 spin_lock_bh(&tipc_net(net)->bclock); in tipc_bcast_lock()
102 spin_unlock_bh(&tipc_net(net)->bclock); in tipc_bcast_unlock()
Dcore.h108 spinlock_t bclock; member
Dbcast.c519 spin_lock_init(&tipc_net(net)->bclock); in tipc_bcast_init()
/Linux-v4.19/arch/sparc/kernel/
Dtime_64.c779 unsigned long bclock = get_tick(); in __delay() local
781 while ((get_tick() - bclock) < loops) in __delay()