Lines Matching refs:popped_objs
21 void **popped_objs; in test_stack_push_pop() local
23 popped_objs = rte_calloc(NULL, STACK_SIZE, sizeof(void *), 0); in test_stack_push_pop()
24 if (popped_objs == NULL) { in test_stack_push_pop()
36 rte_free(popped_objs); in test_stack_push_pop()
44 rte_free(popped_objs); in test_stack_push_pop()
52 rte_free(popped_objs); in test_stack_push_pop()
58 ret = rte_stack_pop(s, &popped_objs[i], bulk_sz); in test_stack_push_pop()
63 rte_free(popped_objs); in test_stack_push_pop()
71 rte_free(popped_objs); in test_stack_push_pop()
79 rte_free(popped_objs); in test_stack_push_pop()
85 if (obj_table[i] != popped_objs[STACK_SIZE - i - 1]) { in test_stack_push_pop()
88 popped_objs[STACK_SIZE - i - 1], i); in test_stack_push_pop()
89 rte_free(popped_objs); in test_stack_push_pop()
94 rte_free(popped_objs); in test_stack_push_pop()