Lines Matching refs:popped_objs
22 void **popped_objs; in test_stack_push_pop() local
24 popped_objs = rte_calloc(NULL, STACK_SIZE, sizeof(void *), 0); in test_stack_push_pop()
25 if (popped_objs == NULL) { in test_stack_push_pop()
37 rte_free(popped_objs); in test_stack_push_pop()
45 rte_free(popped_objs); in test_stack_push_pop()
53 rte_free(popped_objs); in test_stack_push_pop()
59 ret = rte_stack_pop(s, &popped_objs[i], bulk_sz); in test_stack_push_pop()
64 rte_free(popped_objs); in test_stack_push_pop()
72 rte_free(popped_objs); in test_stack_push_pop()
80 rte_free(popped_objs); in test_stack_push_pop()
86 if (obj_table[i] != popped_objs[STACK_SIZE - i - 1]) { in test_stack_push_pop()
89 popped_objs[STACK_SIZE - i - 1], i); in test_stack_push_pop()
90 rte_free(popped_objs); in test_stack_push_pop()
95 rte_free(popped_objs); in test_stack_push_pop()