Lines Matching defs:obj_table
62 * The number of objects to add in the ring from the obj_table.
87 * The number of objects to add in the ring from the obj_table.
111 * The number of objects to add in the ring from the obj_table.
136 * The number of objects to add in the ring from the obj_table.
157 * @param obj_table
164 * The number of objects to add to the ring from the obj_table.
167 rte_ring_enqueue_elem_finish(struct rte_ring *r, const void *obj_table,
176 __rte_ring_enqueue_elems(r, tail, obj_table, esize, n);
182 __rte_ring_enqueue_elems(r, tail, obj_table, esize, n);
200 * @param obj_table
203 * The number of objects to add to the ring from the obj_table.
206 rte_ring_enqueue_finish(struct rte_ring *r, void * const *obj_table,
209 rte_ring_enqueue_elem_finish(r, obj_table, sizeof(uintptr_t), n);
219 * @param obj_table
226 * The number of objects to dequeue from the ring to the obj_table.
234 rte_ring_dequeue_bulk_elem_start(struct rte_ring *r, void *obj_table,
237 return __rte_ring_do_dequeue_start(r, obj_table, esize, n,
248 * @param obj_table
251 * The number of objects to dequeue from the ring to the obj_table.
259 rte_ring_dequeue_bulk_start(struct rte_ring *r, void **obj_table,
262 return rte_ring_dequeue_bulk_elem_start(r, obj_table, sizeof(uintptr_t),
273 * @param obj_table
280 * The number of objects to dequeue from the ring to the obj_table.
288 rte_ring_dequeue_burst_elem_start(struct rte_ring *r, void *obj_table,
291 return __rte_ring_do_dequeue_start(r, obj_table, esize, n,
302 * @param obj_table
305 * The number of objects to dequeue from the ring to the obj_table.
313 rte_ring_dequeue_burst_start(struct rte_ring *r, void **obj_table,
316 return rte_ring_dequeue_burst_elem_start(r, obj_table,