Home
last modified time | relevance | path

Searched refs:cons_next (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/sys/
H A Dbuf_ring.h122 uint32_t cons_head, cons_next; in buf_ring_dequeue_mc() local
128 cons_next = (cons_head + 1) & br->br_cons_mask; in buf_ring_dequeue_mc()
162 uint32_t cons_head, cons_next; in buf_ring_dequeue_sc() local
201 cons_next = (cons_head + 1) & br->br_cons_mask; in buf_ring_dequeue_sc()
210 if (cons_next != prod_tail) { in buf_ring_dequeue_sc()
211 prefetch(br->br_ring[cons_next]); in buf_ring_dequeue_sc()
216 br->br_cons_head = cons_next; in buf_ring_dequeue_sc()
227 br->br_cons_tail = cons_next; in buf_ring_dequeue_sc()
239 uint32_t cons_head, cons_next; in buf_ring_advance_sc() local
248 br->br_cons_head = cons_next; in buf_ring_advance_sc()
[all …]
/f-stack/dpdk/lib/librte_ring/
H A Drte_ring_elem.h463 uint32_t cons_head, cons_next; in __rte_ring_do_dequeue_elem() local
467 &cons_head, &cons_next, &entries); in __rte_ring_do_dequeue_elem()
473 update_tail(&r->cons, cons_head, cons_next, is_sc, 0); in __rte_ring_do_dequeue_elem()
/f-stack/dpdk/doc/guides/prog_guide/
H A Dring_lib.rst166 The cons_next local variable points to the next element of the table, or several elements after in …
181 …step is to modify ring->cons_head in the ring structure to point to the same location as cons_next.