/src/tests/lib/libc/sys/ |
t_sendmmsg.c | 143 // in npkt = min(mmsgsize, mmsgcnt - n); 144 int npkt = min(3, mmsgcnt - n), a; local in function:ATF_TC_BODY 152 cnt = sendmmsg(fd[1], mmsghdr + n, npkt, 0);
|
/src/sys/arch/arm/imx/ |
if_enet.c | 851 int npkt; local in function:enet_start 857 for (npkt = 0; !sc->sc_txbusy; npkt++) { 885 if (npkt) {
|
/src/sys/net80211/ |
ieee80211_output.c | 837 npkt, /* number of fragments */ local in function:ieee80211_compute_duration 862 npkt = paylen / fraglen; 865 if (npkt == 0) /* no fragments */ 869 npkt++; 874 *npktp = npkt; 876 if (npkt > 1) 882 printf("%s: npkt %d firstlen %d lastlen0 %d lastlen %d " 884 __func__, npkt, firstlen, lastlen0, lastlen, fraglen, 896 if (npkt <= 1) {
|
/src/sys/dev/ic/ |
atw.c | 3516 int npkt, rate; local in function:atw_start 3597 &txs->txs_d0, &txs->txs_dn, &npkt, 0) == -1) { 3697 hh->atw_fragnum = npkt << 4;
|
rtw.c | 3305 int desc, i, lastdesc, npkt, rate; local in function:rtw_start 3427 rate, &ts->ts_d0, &ts->ts_dn, &npkt,
|
bwi.c | 9126 unsigned npkt = 0; local in function:bwi_rxeof_pio 9128 while (bwi_rx_frame_pio(sc) && npkt++ < 1000) { 9132 return (npkt != 0);
|
/src/sys/arch/arm/sunxi/ |
sunxi_emac.c | 786 int error, index, len, npkt; local in function:sunxi_emac_rxintr 790 npkt = 0; 827 ++npkt; 847 return npkt;
|
/src/sys/dev/pci/ |
if_bwfm_pci.c | 107 uint32_t npkt; member in struct:bwfm_pci_pkts 715 sc->sc_rx_pkts.npkt = BWFM_NUM_RX_PKTIDS; 724 sc->sc_tx_pkts.npkt = BWFM_NUM_TX_PKTIDS; 932 for (i = 0; i < pkts->npkt; i++) { 933 if (idx == pkts->npkt) 949 for (i = 0; i < pkts->npkt; i++) { 950 if (idx == pkts->npkt) 998 if (pktid >= pkts->npkt || pkts->pkts[pktid].bb_m == NULL)
|
if_aq.c | 5807 int npkt, error; local in function:aq_send_common_locked 5812 for (npkt = 0; ; npkt++) { 5846 if (npkt) {
|
/src/sys/dev/marvell/ |
if_mvxpe.c | 2388 int q, npkt; local in function:mvxpe_rx 2392 while ( (npkt = mvxpe_rx_queue_select(sc, queues, &q))) { 2394 mvxpe_rx_queue(sc, q, npkt); 2400 mvxpe_rx_queue(struct mvxpe_softc *sc, int q, int npkt) 2413 mvxpe_ring_sync_rx(sc, q, rx->rx_dma, npkt, 2416 for (i = 0; i < npkt; i++) { 2484 DPRINTSC(sc, 2, "%d packets received from queue %d\n", npkt, q); 2485 while (npkt > 255) { 2488 npkt -= 255; 2490 if (npkt > 0) 2511 uint32_t prxs, npkt; local in function:mvxpe_rx_queue_select 2562 int npkt; local in function:mvxpe_rx_queue_refill [all...] |