Lines Matching refs:t
47 struct snd_timer *t = stime->timer; in snd_hrtimer_callback() local
53 oruns = hrtimer_forward_now(hrt, ns_to_ktime(t->sticks * resolution)); in snd_hrtimer_callback()
54 snd_timer_interrupt(stime->timer, t->sticks * oruns); in snd_hrtimer_callback()
61 static int snd_hrtimer_open(struct snd_timer *t) in snd_hrtimer_open() argument
69 stime->timer = t; in snd_hrtimer_open()
72 t->private_data = stime; in snd_hrtimer_open()
76 static int snd_hrtimer_close(struct snd_timer *t) in snd_hrtimer_close() argument
78 struct snd_hrtimer *stime = t->private_data; in snd_hrtimer_close()
83 t->private_data = NULL; in snd_hrtimer_close()
88 static int snd_hrtimer_start(struct snd_timer *t) in snd_hrtimer_start() argument
90 struct snd_hrtimer *stime = t->private_data; in snd_hrtimer_start()
94 hrtimer_start(&stime->hrt, ns_to_ktime(t->sticks * resolution), in snd_hrtimer_start()
100 static int snd_hrtimer_stop(struct snd_timer *t) in snd_hrtimer_stop() argument
102 struct snd_hrtimer *stime = t->private_data; in snd_hrtimer_stop()