Searched refs:loops (Results 1 – 10 of 10) sorted by relevance
13 int loops = SPI_MAX_RETRY; in nios_spi_indirect_read() local19 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() local41 while (!(stat & NIOS_SPI_VALID) && --loops) in nios_spi_indirect_write()44 return loops ? 0 : -ETIMEDOUT; in nios_spi_indirect_write()
65 uint64_t loops; member472 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()
45 lcore loops over the services that are enabled for that core, and invokes the
313 applications to use existing event processing loops to arm and cancel event
64 prevent routing loops which is typically done using slow TTL countdown and
93 On top of that, one can easily build an rte_eth_tx_burst function that loops invoking the rte_eth_t…
123 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.
258 In the l2fwd_main_loop() function three loops are placed.
236 "loops", in which an event in dequeued from queue A and later enqueued back to
779 * Forever loops are done with for statements, not while statements.