Lines Matching defs:hrt
27 struct hrtimer hrt;
31 static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
33 struct snd_hrtimer *stime = container_of(hrt, struct snd_hrtimer, hrt);
47 delta = ktime_sub(hrtimer_cb_get_time(hrt), hrtimer_get_expires(hrt));
55 hrtimer_add_expires_ns(hrt, t->sticks * resolution);
71 hrtimer_setup(&stime->hrt, snd_hrtimer_callback, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
86 hrtimer_cancel(&stime->hrt);
99 hrtimer_start(&stime->hrt, ns_to_ktime(t->sticks * resolution),
110 hrtimer_try_to_cancel(&stime->hrt);