Lines Matching defs:total_len
1137 mue_uno_rx_loop(struct usbnet *un, struct usbnet_chain *c, uint32_t total_len)
1147 KASSERTMSG(total_len <= un->un_rx_bufsz, "%u vs %u",
1148 total_len, un->un_rx_bufsz);
1151 if (__predict_false(total_len < sizeof(*hdrp))) {
1152 MUE_PRINTF(un, "packet length %u too short\n", total_len);
1177 pktlen + sizeof(*hdrp) > total_len)) {
1217 if (pktlen > total_len)
1218 pktlen = total_len;
1219 total_len -= pktlen;
1221 } while (total_len > 0);