Lines Matching defs:hrt
26 struct hrtimer hrt;
30 static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
32 struct snd_hrtimer *stime = container_of(hrt, struct snd_hrtimer, hrt);
46 delta = ktime_sub(hrt->base->get_time(), hrtimer_get_expires(hrt));
54 hrtimer_add_expires_ns(hrt, t->sticks * resolution);
71 hrtimer_init(&stime->hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
73 stime->hrt.function = snd_hrtimer_callback;
88 hrtimer_cancel(&stime->hrt);
101 hrtimer_start(&stime->hrt, ns_to_ktime(t->sticks * resolution),
112 hrtimer_try_to_cancel(&stime->hrt);