Searched refs:wrap (Results 1 – 13 of 13) sorted by relevance
| /dpdk/app/test-crypto-perf/ |
| H A D | cperf_test_vector_parsing.c | 41 const uint8_t wrap = 32; in show_test_vector() local 50 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 65 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 80 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 94 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 108 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 121 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 134 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 147 if ((i % wrap == 0) && (i != 0)) in show_test_vector() 162 if ((i % wrap == 0) && (i != 0)) in show_test_vector() [all …]
|
| /dpdk/lib/eal/common/ |
| H A D | eal_common_lcore.c | 91 unsigned int rte_get_next_lcore(unsigned int i, int skip_main, int wrap) in rte_get_next_lcore() argument 94 if (wrap) in rte_get_next_lcore() 101 if (wrap) in rte_get_next_lcore()
|
| /dpdk/lib/eal/include/ |
| H A D | rte_lcore.h | 219 unsigned int rte_get_next_lcore(unsigned int i, int skip_main, int wrap);
|
| /dpdk/doc/guides/nics/ |
| H A D | build_and_test.rst | 41 The ethdev library use above options to wrap debug code to trace invalid parameters 43 Each PMD can decide to reuse them to wrap their own debug code in the Rx/Tx path.
|
| /dpdk/drivers/event/opdl/ |
| H A D | opdl_ring.c | 178 uint32_t wrap; in update_available_seq() local 181 wrap = s->num_slots; in update_available_seq() 189 wrap = 0; in update_available_seq() 199 s->available_seq = min_seq + wrap; in update_available_seq() 201 __atomic_store_n(&s->shared.available_seq, min_seq + wrap, in update_available_seq()
|
| /dpdk/doc/api/ |
| H A D | meson.build | 12 # be an individual custom_target, we need to wrap the doxygen call in a
|
| /dpdk/doc/guides/cryptodevs/ |
| H A D | mlx5.rst | 107 numbers, represent 48 bytes (8 bytes IV added by the AES key wrap algorithm).
|
| /dpdk/drivers/net/cxgbe/ |
| H A D | sge.c | 600 #define IDXDIFF(head, tail, wrap) \ argument 601 ((head) >= (tail) ? (head) - (tail) : (wrap) - (tail) + (head)) 606 #define PIDXDIFF(head, tail, wrap) \ argument 607 ((tail) >= (head) ? (tail) - (head) : (wrap) - (head) + (tail))
|
| /dpdk/doc/guides/rel_notes/ |
| H A D | release_20_02.rst | 114 avail wrap counter (When split ring is used, the avail wrap counter is not
|
| /dpdk/lib/vhost/ |
| H A D | virtio_net.c | 2798 bool wrap = vq->avail_wrap_counter; in vhost_reserve_avail_batch_packed() local 2812 if (unlikely((wrap != !!(flags & VRING_DESC_F_AVAIL)) || in vhost_reserve_avail_batch_packed() 2813 (wrap == !!(flags & VRING_DESC_F_USED)) || in vhost_reserve_avail_batch_packed()
|
| /dpdk/doc/guides/contributing/ |
| H A D | documentation.rst | 445 For long literal lines, try to wrap the text at sensible locations.
|
| H A D | coding_style.rst | 441 * If you have to wrap a long statement, put the operator at the end of the line, and indent again.
|
| /dpdk/doc/guides/prog_guide/ |
| H A D | poll_mode_drv.rst | 102 … to remove operations that would otherwise be unavoidable, such as ring index wrap back management.
|