Lines Matching defs:maxp
1992 int maxp = UGETW(xfer->ux_pipe->up_endpoint->ue_edesc->wMaxPacketSize);
1993 if (maxp == 0) {
1994 printf("%s: maxp=0\n", __func__);
1997 size_t ntd = howmany(len, maxp);
1999 * if our transfer is bigger than PAGE_SIZE and maxp not a factor of
2002 if (len > PAGE_SIZE && (PAGE_SIZE % maxp) != 0) {
2012 DPRINTFN(10, "maxp=%jd ntd=%jd", maxp, ntd, 0, 0);
2078 int maxp;
2088 maxp = UGETW(pipe->up_endpoint->ue_edesc->wMaxPacketSize);
2089 KASSERT(maxp != 0);
2111 if (l > maxp)
2112 l = maxp;
2147 xfer, length, len, maxp, uxfer->ux_nstd, i);
2151 length % maxp == 0) {