Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 25 of 112) sorted by relevance

12345

/dpdk/drivers/common/sfc_efx/base/
H A Defx_sram.c19 uint32_t stop = start + n; in efx_sram_buf_tbl_set() local
43 if (stop >= EFX_BUF_TBL_SIZE) { in efx_sram_buf_tbl_set()
50 for (id = start; id != stop; id++) { in efx_sram_buf_tbl_set()
65 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_set()
73 EFSYS_ASSERT3U(id, ==, stop); in efx_sram_buf_tbl_set()
120 id = stop; in efx_sram_buf_tbl_set()
144 uint32_t stop = start + n; in efx_sram_buf_tbl_clear() local
164 EFSYS_ASSERT3U(stop, <, EFX_BUF_TBL_SIZE); in efx_sram_buf_tbl_clear()
166 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_clear()
169 FRF_AZ_BUF_CLR_CMD, 1, FRF_AZ_BUF_CLR_END_ID, stop - 1, in efx_sram_buf_tbl_clear()
/dpdk/lib/eventdev/
H A Deventdev_trace_points.c29 lib.eventdev.stop)
60 lib.eventdev.rx.adapter.stop)
79 lib.eventdev.tx.adapter.stop)
92 lib.eventdev.timer.stop)
123 lib.eventdev.crypto.stop)
H A Devent_timer_adapter_pmd.h64 rte_event_timer_adapter_stop_t stop; /**< Stop adapter */ member
/dpdk/app/dumpcap/
H A Dmain.c70 } stop; variable
178 stop.duration = NSEC_PER_SEC * interval; in auto_stop()
180 stop.size = get_uint(value, "filesize", 0) * 1024; in auto_stop()
182 stop.packets = get_uint(value, "packets", 0); in auto_stop()
350 stop.packets = get_uint(optarg, "packet_count", 0); in parse_opts()
822 if (stop.size && file_size >= stop.size) in main()
825 if (stop.packets && packets_received >= stop.packets) in main()
828 if (stop.duration != 0 && in main()
829 create_timestamp() - start_time > stop.duration) in main()
/dpdk/doc/guides/prog_guide/img/
H A Ddir_24_8_alg.svg7 <stop offset="0" stop-color="#e8ebf4" stop-opacity="1" id="stop4"/>
8 <stop offset=".24" stop-color="#f4f5f9" stop-opacity="1" id="stop6"/>
9 <stop offset=".54" stop-color="#feffff" stop-opacity="1" id="stop8"/>
/dpdk/drivers/net/sfc/
H A Dsfc_ev.c84 unsigned int stop; in sfc_ev_efx_rx() local
99 stop = (id + 1) & rxq->ptr_mask; in sfc_ev_efx_rx()
101 delta = (stop >= pending_id) ? (stop - pending_id) : in sfc_ev_efx_rx()
102 (rxq->ptr_mask + 1 - pending_id + stop); in sfc_ev_efx_rx()
136 for (i = pending_id; i != stop; i = (i + 1) & rxq->ptr_mask) { in sfc_ev_efx_rx()
236 unsigned int stop; in sfc_ev_tx() local
248 stop = (id + 1) & txq->ptr_mask; in sfc_ev_tx()
251 delta = (stop >= id) ? (stop - id) : (txq->ptr_mask + 1 - id + stop); in sfc_ev_tx()
/dpdk/app/test/
H A Dtest_pmd_perf.c286 static volatile uint64_t stop; variable
322 stop = 1; in signal_handler()
347 while (likely(!stop)) { in measure_rxtx()
384 while (likely(!stop)) { in measure_rxonly()
423 while (likely(!stop)) { in measure_txonly()
765 stop = 0; in test_pmd_perf()
/dpdk/doc/guides/nics/features/
H A Dark.ini8 Queue start/stop = Y key
H A Dnfb.ini9 Queue start/stop = Y key
H A Denetc.ini13 Queue start/stop = Y key
H A Dnetvsc.ini10 Queue start/stop = Y key
H A Dcxgbevf.ini9 Queue start/stop = Y key
H A Dvmxnet3.ini10 Queue start/stop = Y key
H A Dnfp.ini11 Queue start/stop = Y key
H A Dfm10k_vf.ini11 Queue start/stop = Y key
H A Dfailsafe.ini11 Queue start/stop = Y key
H A Dvirtio.ini11 Queue start/stop = Y key
H A Dthunderx.ini10 Queue start/stop = Y key
H A Docteontx.ini11 Queue start/stop = P key
H A Dice_dcf.ini10 Queue start/stop = Y key
H A Dionic.ini10 Queue start/stop = Y key
/dpdk/lib/ethdev/
H A Dethdev_trace_points.c22 lib.ethdev.stop)
/dpdk/doc/guides/nics/
H A Dvhost.rst26 * Don't need to stop RX/TX, when the user wants to stop a guest or a virtio-net driver on guest.
/dpdk/lib/cryptodev/
H A Dcryptodev_trace_points.c16 lib.cryptodev.stop)
/dpdk/lib/bbdev/
H A Drte_bbdev_pmd.h150 rte_bbdev_stop_t stop; member

12345