Lines Matching defs:stack
38 stack_init(struct stack *stack) in stack_init()
46 stack_empty(const struct stack *stack) in stack_empty()
99 stack_size(const struct stack *stack) in stack_size()
105 stack_dup(struct stack *stack) in stack_dup()
119 stack_swap(struct stack *stack) in stack_swap()
133 stack_grow(struct stack *stack) in stack_grow()
146 stack_pushnumber(struct stack *stack, struct number *b) in stack_pushnumber()
155 stack_pushstring(struct stack *stack, char *string) in stack_pushstring()
164 stack_push(struct stack *stack, struct value *v) in stack_push()
183 stack_tos(const struct stack *stack) in stack_tos()
191 stack_set_tos(struct stack *stack, struct value *v) in stack_set_tos()
204 stack_pop(struct stack *stack) in stack_pop()
212 stack_popnumber(struct stack *stack) in stack_popnumber()
228 stack_popstring(struct stack *stack) in stack_popstring()
244 stack_clear(struct stack *stack) in stack_clear()
254 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) in stack_print()
335 frame_assign(struct stack *stack, size_t index, const struct value *v) in frame_assign()
353 frame_retrieve(const struct stack *stack, size_t index) in frame_retrieve()