Lines Matching defs:ntd
1997 size_t ntd = howmany(len, maxp);
2003 ntd += howmany(len, PAGE_SIZE);
2010 ntd++;
2012 DPRINTFN(10, "maxp=%jd ntd=%jd", maxp, ntd, 0, 0);
2015 uxfer->ux_nstd = ntd;
2016 if (ntd == 0) {
2018 DPRINTF("ntd=0", 0, 0, 0, 0);
2021 uxfer->ux_stds = kmem_alloc(sizeof(uhci_soft_td_t *) * ntd,
2024 for (int i = 0; i < ntd; i++) {
2032 sizeof(uhci_soft_td_t *) * ntd);