HomeSort by: relevance | last modified time | path
    Searched defs:hrt (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/drm2/linux/
linux_hrtimer.c 41 hrtimer_init(struct hrtimer *hrt, clockid_t clkid, enum hrtimer_mode mode)
46 callout_init(&hrt->hrt_ch, CALLOUT_MPSAFE);
47 callout_setfunc(&hrt->hrt_ch, hrtimer_fire, hrt);
48 hrt->hrt_mode = mode;
52 _hrtimer_schedule(struct hrtimer *hrt)
56 switch (hrt->hrt_mode) {
61 delta = ktime_to_ms(hrt->hrt_expires);
64 panic("invalid hrtimer mode %d", hrt->hrt_mode);
66 callout_schedule(&hrt->hrt_ch, delta)
72 struct hrtimer *hrt = cookie; local in function:hrtimer_fire
    [all...]
  /src/sys/dev/i2o/
iop.c 485 printf("%s: unable to retrieve HRT\n", device_xname(sc->sc_dev));
1068 iop_hrt_get0(struct iop_softc *sc, struct i2o_hrt *hrt, int size)
1082 iop_msg_map(sc, im, mb, hrt, size, 0, NULL);
1095 struct i2o_hrt hrthdr, *hrt; local in function:iop_hrt_get
1102 DPRINTF(("%s: %d hrt entries\n", device_xname(sc->sc_dev),
1107 hrt = malloc(size, M_DEVBUF, M_WAITOK);
1108 if ((rv = iop_hrt_get0(sc, hrt, size)) != 0) {
1109 free(hrt, M_DEVBUF);
1115 sc->sc_hrt = hrt;

Completed in 14 milliseconds