Lines Matching defs:prod
968 unsigned int prod, free, last, i;
982 prod = txr->next_avail_desc;
984 if (free <= prod)
986 free -= prod;
1003 txbuf = &txr->tx_buffers[prod];
1020 if (igc_tx_ctx_setup(txr, m, prod, &cmd_type_len,
1023 prod++;
1024 prod &= mask;
1029 txdesc = &txr->tx_base[prod];
1042 last = prod;
1044 prod++;
1045 prod &= mask;
1065 txr->next_avail_desc = prod;
1066 IGC_WRITE_REG(&sc->hw, IGC_TDT(txr->me), prod);
1078 unsigned int cons, prod, last;
1082 prod = txr->next_avail_desc;
1085 if (cons == prod)
1115 } while (cons != prod);
2039 igc_tx_ctx_setup(struct igc_txring *txr, struct mbuf *mp, int prod,
2124 txdesc = (struct igc_adv_tx_context_desc *)&txr->tx_base[prod];