Lines Matching refs:here
85 union ehci_qh_shadow here = *prev_p; in ms_periodic_unlink() local
88 while (here.ptr && here.ptr != ptr) in ms_periodic_unlink()
94 hw_p = here.hw_next; in ms_periodic_unlink()
95 here = *prev_p; in ms_periodic_unlink()
97 if (!here.ptr) in ms_periodic_unlink()
104 ? (union ehci_qh_shadow *)(&here.qh->qh_next) in ms_periodic_unlink()
107 *hw_p = *here.hw_next; in ms_periodic_unlink()
359 union ehci_qh_shadow here; in ms_tt_no_collision() local
362 here = pEhci->pshadow [frame]; in ms_tt_no_collision()
364 while (here.ptr) { in ms_tt_no_collision()
367 if (ms_same_tt (dev, here.qh->dev)) { in ms_tt_no_collision()
370 mask = here.qh->hw_ep_state2; in ms_tt_no_collision()
376 type = Q_NEXT_TYPE(here.qh->hw_next_qh); in ms_tt_no_collision()
377 here = here.qh->qh_next; in ms_tt_no_collision()
464 union ehci_qh_shadow here = *prev; in ms_qh_link_periodic() local
469 while (here.ptr) { in ms_qh_link_periodic()
474 hw_p = shadow_next_periodic(ehci, &here, type); in ms_qh_link_periodic()
475 here = *prev; in ms_qh_link_periodic()
482 while (here.ptr && qh != here.qh) { in ms_qh_link_periodic()
483 if (qh->u16Period > here.qh->u16Period) in ms_qh_link_periodic()
485 prev = &here.qh->qh_next; in ms_qh_link_periodic()
486 hw_p = &here.qh->hw_next_qh; in ms_qh_link_periodic()
487 here = *prev; in ms_qh_link_periodic()
490 if (qh != here.qh) { in ms_qh_link_periodic()
491 qh->qh_next = here; in ms_qh_link_periodic()
492 if (here.qh) in ms_qh_link_periodic()