Home
last modified time | relevance | path

Searched refs:wrap (Results 1 – 13 of 13) sorted by relevance

/dpdk/app/test-crypto-perf/
H A Dcperf_test_vector_parsing.c41 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 Deal_common_lcore.c91 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 Drte_lcore.h219 unsigned int rte_get_next_lcore(unsigned int i, int skip_main, int wrap);
/dpdk/doc/guides/nics/
H A Dbuild_and_test.rst41 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 Dopdl_ring.c178 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 Dmeson.build12 # be an individual custom_target, we need to wrap the doxygen call in a
/dpdk/doc/guides/cryptodevs/
H A Dmlx5.rst107 numbers, represent 48 bytes (8 bytes IV added by the AES key wrap algorithm).
/dpdk/drivers/net/cxgbe/
H A Dsge.c600 #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 Drelease_20_02.rst114 avail wrap counter (When split ring is used, the avail wrap counter is not
/dpdk/lib/vhost/
H A Dvirtio_net.c2798 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 Ddocumentation.rst445 For long literal lines, try to wrap the text at sensible locations.
H A Dcoding_style.rst441 * 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 Dpoll_mode_drv.rst102 … to remove operations that would otherwise be unavoidable, such as ring index wrap back management.