Lines Matching refs:total_length
459 int length, total_length;
467 for (total_length = -1, m0 = NULL;;) {
479 total_length = doff - EC_PKT_RDOFF;
483 if (total_length > (ETHER_MAX_LEN - ETHER_CRC_LEN)) {
486 device_xname(sc->sc_dev), total_length);
488 total_length = (ETHER_MAX_LEN - ETHER_CRC_LEN);
495 m0->m_pkthdr.len = total_length;
499 while (total_length > 0) {
500 if (total_length >= MINCLSIZE) {
506 m->m_len = length = uimin(total_length, length);
508 total_length -= length;
511 if (total_length > 0) {
522 if (total_length == 0) {