Lines Matching defs:resolution
27 tmr->tick.resolution = (tmr->tempo * tmr->tempo_base) / tmr->ppq;
33 tmr->tick.resolution = (tmr->tempo / tmr->ppq) * tmr->tempo_base;
34 tmr->tick.resolution += s;
36 if (tmr->tick.resolution <= 0)
37 tmr->tick.resolution = 1;
119 unsigned long resolution,
135 resolution *= ticks;
138 resolution = (resolution >> 16) * tmr->skew +
139 (((resolution & 0xffff) * tmr->skew) >> 16);
143 snd_seq_inc_time_nsec(&tmr->cur_time, resolution);
146 snd_seq_timer_update_tick(&tmr->tick, resolution);
445 unsigned long resolution;
460 resolution = snd_timer_resolution(ti) * tmr->ticks;
461 snd_iprintf(buffer, " Period time : %lu.%09lu\n", resolution / 1000000000, resolution % 1000000000);