Lines Matching defs:obj_table
103 * @param obj_table
106 * The number of objects to push on the stack from the obj_table.
111 rte_stack_push(struct rte_stack *s, void * const *obj_table, unsigned int n)
114 RTE_ASSERT(obj_table != NULL);
117 return __rte_stack_lf_push(s, obj_table, n);
119 return __rte_stack_std_push(s, obj_table, n);
127 * @param obj_table
135 rte_stack_pop(struct rte_stack *s, void **obj_table, unsigned int n)
138 RTE_ASSERT(obj_table != NULL);
141 return __rte_stack_lf_pop(s, obj_table, n);
143 return __rte_stack_std_pop(s, obj_table, n);