Home
last modified time | relevance | path

Searched refs:loops (Results 1 – 10 of 10) sorted by relevance

/dpdk/drivers/raw/ifpga/base/
H A Dopae_spi.c13 int loops = SPI_MAX_RETRY; in nios_spi_indirect_read() local
19 while (!(stat & NIOS_SPI_VALID) && --loops) in nios_spi_indirect_read()
24 return loops ? 0 : -ETIMEDOUT; in nios_spi_indirect_read()
33 int loops = SPI_MAX_RETRY; in nios_spi_indirect_write() local
41 while (!(stat & NIOS_SPI_VALID) && --loops) in nios_spi_indirect_write()
44 return loops ? 0 : -ETIMEDOUT; in nios_spi_indirect_write()
/dpdk/lib/eal/common/
H A Drte_service.c65 uint64_t loops; member
472 cs->loops++; in service_runner_func()
822 *attr_value = cs->loops; in rte_service_lcore_attr_get()
852 cs->loops = 0; in rte_service_lcore_attr_reset_all()
/dpdk/doc/guides/prog_guide/
H A Dservice_cores.rst45 lcore loops over the services that are enabled for that core, and invokes the
H A Devent_timer_adapter.rst313 applications to use existing event processing loops to arm and cancel event
H A Dmember_lib.rst64 prevent routing loops which is typically done using slow TTL countdown and
H A Dpoll_mode_drv.rst93 On top of that, one can easily build an rte_eth_tx_burst function that loops invoking the rte_eth_t…
/dpdk/doc/guides/nics/
H A Dvirtio.rst123 One thread loops to fetch packets from the physical NIC port into the kni receive queue.
124 The other user thread loops to send packets in the kni transmit queue.
/dpdk/doc/guides/sample_app_ug/
H A Dl2_forward_job_stats.rst258 In the l2fwd_main_loop() function three loops are placed.
/dpdk/doc/guides/eventdevs/
H A Ddlb2.rst236 "loops", in which an event in dequeued from queue A and later enqueued back to
/dpdk/doc/guides/contributing/
H A Dcoding_style.rst779 * Forever loops are done with for statements, not while statements.