Searched refs:next_pidx (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/sys/dev/ice/
H A Dice_iflib_txrx.c362 uint32_t next_pidx; local
375 for (i = 0, next_pidx = pidx; i < count; i++) {
376 rxq->rx_base[next_pidx].read.pkt_addr = htole64(paddrs[i]);
377 if (++next_pidx == (uint32_t)rxq->desc_count)
378 next_pidx = 0;
/freebsd-12-stable/sys/dev/ixgbe/
H A Dix_txrx.c332 uint32_t next_pidx, pidx; local
339 for (i = 0, next_pidx = pidx; i < count; i++) {
340 rxr->rx_base[next_pidx].read.pkt_addr = htole64(paddrs[i]);
341 if (++next_pidx == sc->shared->isc_nrxd[0])
342 next_pidx = 0;
/freebsd-12-stable/sys/dev/e1000/
H A Dem_txrx.c493 uint32_t next_pidx, pidx; local
501 for (i = 0, next_pidx = pidx; i < count; i++) {
502 rxd = (struct e1000_rx_desc *)&rxr->rx_base[next_pidx];
507 if (++next_pidx == scctx->isc_nrxd[0])
508 next_pidx = 0;
522 uint32_t next_pidx, pidx; local
530 for (i = 0, next_pidx = pidx; i < count; i++) {
531 rxd = &rxr->rx_base[next_pidx];
536 if (++next_pidx == scctx->isc_nrxd[0])
537 next_pidx
[all...]
H A Digb_txrx.c365 uint32_t next_pidx, pidx; local
373 for (i = 0, next_pidx = pidx; i < count; i++) {
374 rxd = (union e1000_adv_rx_desc *)&rxr->rx_base[next_pidx];
377 if (++next_pidx == scctx->isc_nrxd[0])
378 next_pidx = 0;
/freebsd-12-stable/sys/dev/ixl/
H A Dixl_txrx.c554 uint32_t next_pidx, pidx; local
562 for (i = 0, next_pidx = pidx; i < count; i++) {
563 rxr->rx_base[next_pidx].read.pkt_addr = htole64(paddrs[i]);
564 if (++next_pidx == scctx->isc_nrxd[0])
565 next_pidx = 0;

Completed in 1000 milliseconds