Home
last modified time | relevance | path

Searched refs:itd (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/dev/usb/controller/
H A Dehci.c430 ehci_itd_t *itd; in ehci_init() local
458 itd = buf_res.buffer; in ehci_init()
462 itd->page_cache = sc->sc_hw.isoc_hs_start_pc + i; in ehci_init()
466 sc->sc_isoc_hs_p_last[i] = itd; in ehci_init()
470 itd->itd_self = in ehci_init()
474 itd->itd_next = in ehci_init()
826 ehci_dump_itd(ehci_softc_t *sc, ehci_itd_t *itd) in ehci_dump_itd() argument
828 usb_pc_cpu_invalidate(itd->page_cache); in ehci_dump_itd()
829 printf("ITD(%p) at 0x%08x\n", itd, hc32toh(sc, itd->itd_self) & ~0x1F); in ehci_dump_itd()
830 printf(" next=0x%08x\n", hc32toh(sc, itd->itd_next)); in ehci_dump_itd()
[all …]
H A Dohci.c2449 ohci_itd_t *itd; in ohci_xfer_setup() local
2453 itd = page_info.buffer; in ohci_xfer_setup()
2456 itd->itd_self = htole32(page_info.physaddr); in ohci_xfer_setup()
2457 itd->obj_next = last_obj; in ohci_xfer_setup()
2458 itd->page_cache = pc + n; in ohci_xfer_setup()
2460 last_obj = itd; in ohci_xfer_setup()
/freebsd/sys/kern/
H A Dkern_thread.c629 struct thread *itd, *ntd; in thread_reap_domain() local
642 itd = (struct thread *)atomic_swap_ptr((uintptr_t *)&tdd->tdd_zombies, in thread_reap_domain()
644 if (itd == NULL) in thread_reap_domain()
658 while (itd != NULL) { in thread_reap_domain()
659 ntd = itd->td_zombie; in thread_reap_domain()
660 EVENTHANDLER_DIRECT_INVOKE(thread_dtor, itd); in thread_reap_domain()
662 tidbatch_add(&tidbatch, itd); in thread_reap_domain()
663 credbatch_add(&credbatch, itd); in thread_reap_domain()
664 limbatch_add(&limbatch, itd); in thread_reap_domain()
665 tdcountbatch_add(&tdcountbatch, itd); in thread_reap_domain()
[all …]
/freebsd/contrib/libpcap/
H A DCHANGES1468 Michael Stolarchuk (mts@terminator.rs.itd.umich.edu)