Home
last modified time | relevance | path

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

/f-stack/dpdk/app/test/
H A Dtest_stack.c41 if (rte_stack_count(s) != i + bulk_sz) { in test_stack_push_pop()
43 __func__, __LINE__, rte_stack_count(s), in test_stack_push_pop()
51 __func__, __LINE__, rte_stack_count(s), in test_stack_push_pop()
68 if (rte_stack_count(s) != STACK_SIZE - i - bulk_sz) { in test_stack_push_pop()
70 __func__, __LINE__, rte_stack_count(s), in test_stack_push_pop()
78 __func__, __LINE__, rte_stack_count(s), in test_stack_push_pop()
130 if (rte_stack_count(s) != 0) { in test_stack_basic()
132 __func__, __LINE__, rte_stack_count(s)); in test_stack_basic()
138 __func__, __LINE__, rte_stack_count(s), STACK_SIZE); in test_stack_basic()
/f-stack/dpdk/lib/librte_stack/
H A Drte_stack.h156 rte_stack_count(struct rte_stack *s) in rte_stack_count() function
179 return s->capacity - rte_stack_count(s); in rte_stack_free_count()
/f-stack/dpdk/drivers/mempool/stack/
H A Drte_mempool_stack.c67 return rte_stack_count(s); in stack_get_count()