Home
last modified time | relevance | path

Searched refs:rte_stack_push (Results 1 – 4 of 4) sorted by relevance

/dpdk/app/test/
H A Dtest_stack.c31 ret = rte_stack_push(s, &obj_table[i], bulk_sz); in test_stack_push_pop()
155 ret = rte_stack_push(s, obj_table, 2 * STACK_SIZE); in test_stack_basic()
290 if (rte_stack_push(thread_test_args.s, obj_table, num) != num) { in stack_thread_push_pop()
H A Dtest_stack_perf.c152 rte_stack_push(s, objs, size); in bulk_push_pop()
261 rte_stack_push(s, &obj, 1); in test_single_push_pop()
283 rte_stack_push(s, objs, bulk_sizes[sz]); in test_bulk_push_pop()
/dpdk/drivers/mempool/stack/
H A Drte_mempool_stack.c50 return rte_stack_push(s, obj_table, n) == 0 ? -ENOBUFS : 0; in stack_enqueue()
/dpdk/lib/stack/
H A Drte_stack.h110 rte_stack_push(struct rte_stack *s, void * const *obj_table, unsigned int n) in rte_stack_push() function