Symbol: CYCLES_PER_SECOND
sound/firewire/amdtp-stream-trace.h
36
__entry->second = cycles / CYCLES_PER_SECOND;
sound/firewire/amdtp-stream-trace.h
37
__entry->cycle = cycles % CYCLES_PER_SECOND;
sound/firewire/amdtp-stream.c
21
#define TICKS_PER_SECOND (TICKS_PER_CYCLE * CYCLES_PER_SECOND)
sound/firewire/amdtp-stream.c
2102
queue_size = DIV_ROUND_UP(CYCLES_PER_SECOND * events_per_buffer,
sound/firewire/amdtp-stream.c
2109
idle_irq_interval = DIV_ROUND_UP(CYCLES_PER_SECOND * events_per_period,
sound/firewire/amdtp-stream.c
472
unsigned int cycle_lo = (cycle % CYCLES_PER_SECOND) & 0x0f;
sound/firewire/amdtp-stream.c
873
return (((tstamp >> 13) & 0x07) * CYCLES_PER_SECOND) + (tstamp & 0x1fff);
sound/firewire/amdtp-stream.c
885
if (cycle >= OHCI_SECOND_MODULUS * CYCLES_PER_SECOND)
sound/firewire/amdtp-stream.c
886
cycle -= OHCI_SECOND_MODULUS * CYCLES_PER_SECOND;
sound/firewire/amdtp-stream.c
893
minuend += OHCI_SECOND_MODULUS * CYCLES_PER_SECOND;
sound/firewire/amdtp-stream.c
902
else if (lval < rval && rval - lval < OHCI_SECOND_MODULUS * CYCLES_PER_SECOND / 2)
sound/firewire/motu/amdtp-motu.c
21
#define TICKS_PER_SECOND (TICKS_PER_CYCLE * CYCLES_PER_SECOND)
sound/firewire/motu/amdtp-motu.c
328
cache->tx_cycle_count = (cache->tx_cycle_count + 1) % CYCLES_PER_SECOND;
sound/firewire/motu/amdtp-motu.c
341
p->cache->tx_cycle_count = (s->domain->processing_cycle.tx_start % CYCLES_PER_SECOND);
sound/firewire/motu/amdtp-motu.c
392
cache->rx_cycle_count = (cache->rx_cycle_count + 1) % CYCLES_PER_SECOND;
sound/firewire/motu/amdtp-motu.c
404
p->cache->rx_cycle_count = (s->domain->processing_cycle.rx_start % CYCLES_PER_SECOND);