/src/sys/arch/hp300/dev/ |
hpib.c | 246 hpibreq(device_t pdev, struct hpibqueue *hq) 252 TAILQ_INSERT_TAIL(&sc->sc_queue, hq, hq_list); 255 if (TAILQ_FIRST(&sc->sc_queue) == hq) 262 hpibfree(device_t pdev, struct hpibqueue *hq) 268 TAILQ_REMOVE(&sc->sc_queue, hq, hq_list); 271 if ((hq = TAILQ_FIRST(&sc->sc_queue)) != NULL) 272 (*hq->hq_start)(hq->hq_softc); 370 struct hpibqueue *hq; local in function:hpibstart 372 hq = TAILQ_FIRST(&sc->sc_queue) [all...] |
fhpib.c | 458 struct hpibqueue *hq; local in function:fhpibdmadone 470 hq = TAILQ_FIRST(&hs->sc_queue); 471 (hq->hq_intr)(hq->hq_softc); 525 struct hpibqueue *hq; local in function:fhpibintr 550 hq = TAILQ_FIRST(&hs->sc_queue); 562 (hq->hq_intr)(hq->hq_softc); 578 if ((stat0 & (0x80 >> hq->hq_slave)) == 0) { 585 if ((stat0 & (0x80 >> hq->hq_slave)) == 0 & [all...] |
nhpib.c | 457 struct hpibqueue *hq; local in function:nhpibreadtimo 464 hq = TAILQ_FIRST(&hs->sc_queue); 465 (hq->hq_intr)(hq->hq_softc); 507 struct hpibqueue *hq; local in function:nhpibintr 517 hq = TAILQ_FIRST(&hs->sc_queue); 530 (hq->hq_intr)(hq->hq_softc); 534 if (stat0 & (0x80 >> hq->hq_slave)) { 536 (hq->hq_intr)(hq->hq_softc) [all...] |
/src/include/ |
mpool.h | 52 TAILQ_ENTRY(_bkt) hq; /* hash queue */
|
/src/lib/libc/db/mpool/ |
mpool.c | 154 TAILQ_INSERT_HEAD(head, bp, hq); 183 TAILQ_REMOVE(head, bp, hq); 227 TAILQ_REMOVE(head, bp, hq); 228 TAILQ_INSERT_HEAD(head, bp, hq); 279 TAILQ_INSERT_HEAD(head, bp, hq); 387 TAILQ_REMOVE(head, bp, hq); 466 TAILQ_FOREACH(bp, head, hq)
|
/src/sys/sys/ |
gcq.h | 47 struct gcq hq; member in struct:gcq_head 51 #define GCQ_INIT_HEAD(head) { GCQ_INIT((head).hq) } 258 struct gcq *q, *hq; local in function:_gcq_next 259 hq = gcq_hq(head); 261 if (hq != start && q == hq) 262 q = hq->q_next; 271 struct gcq *q, *hq; local in function:_gcq_prev 272 hq = gcq_hq(head); 274 if (hq != start && q == hq [all...] |