Lines Matching defs:obj_table
38 * @param obj_table
45 * The number of objects to add in the ring from the obj_table.
53 rte_ring_mp_hts_enqueue_bulk_elem(struct rte_ring *r, const void *obj_table,
56 return __rte_ring_do_hts_enqueue_elem(r, obj_table, esize, n,
65 * @param obj_table
72 * The number of objects to dequeue from the ring to the obj_table.
80 rte_ring_mc_hts_dequeue_bulk_elem(struct rte_ring *r, void *obj_table,
83 return __rte_ring_do_hts_dequeue_elem(r, obj_table, esize, n,
92 * @param obj_table
99 * The number of objects to add in the ring from the obj_table.
107 rte_ring_mp_hts_enqueue_burst_elem(struct rte_ring *r, const void *obj_table,
110 return __rte_ring_do_hts_enqueue_elem(r, obj_table, esize, n,
121 * @param obj_table
128 * The number of objects to dequeue from the ring to the obj_table.
136 rte_ring_mc_hts_dequeue_burst_elem(struct rte_ring *r, void *obj_table,
139 return __rte_ring_do_hts_dequeue_elem(r, obj_table, esize, n,
148 * @param obj_table
151 * The number of objects to add in the ring from the obj_table.
159 rte_ring_mp_hts_enqueue_bulk(struct rte_ring *r, void * const *obj_table,
162 return rte_ring_mp_hts_enqueue_bulk_elem(r, obj_table,
171 * @param obj_table
174 * The number of objects to dequeue from the ring to the obj_table.
182 rte_ring_mc_hts_dequeue_bulk(struct rte_ring *r, void **obj_table,
185 return rte_ring_mc_hts_dequeue_bulk_elem(r, obj_table,
194 * @param obj_table
197 * The number of objects to add in the ring from the obj_table.
205 rte_ring_mp_hts_enqueue_burst(struct rte_ring *r, void * const *obj_table,
208 return rte_ring_mp_hts_enqueue_burst_elem(r, obj_table,
219 * @param obj_table
222 * The number of objects to dequeue from the ring to the obj_table.
230 rte_ring_mc_hts_dequeue_burst(struct rte_ring *r, void **obj_table,
233 return rte_ring_mc_hts_dequeue_burst_elem(r, obj_table,