Lines Matching defs:hh
61 struct hd6446x_intrhand *hh = &hd6446x_intrhand[ffs(irq) - 1];
67 hh->hh_func = func;
68 hh->hh_arg = arg;
69 hh->hh_ipl = level << 4;
70 hh->hh_imask = irq;
71 hd6446x_ienable |= hh->hh_imask;
78 return (hh);
84 struct hd6446x_intrhand *hh = handle;
90 hd6446x_ienable &= ~hh->hh_imask;
91 memset(hh, 0, sizeof(*hh));
100 struct hd6446x_intrhand *hh = &hd6446x_intrhand[ffs(irq) - 1];
103 KDASSERT(hh->hh_func != NULL);
105 hh->hh_ipl = level << 4;
120 struct hd6446x_intrhand *hh = &hd6446x_intrhand[src];
122 if (hh->hh_func != NULL && hh->hh_ipl <= (ipl << 4))