Lines Matching defs:stack
38 stack_init(struct stack *stack) in stack_init()
47 stack_empty(const struct stack *stack) in stack_empty()
101 stack_size(const struct stack *stack) in stack_size()
108 stack_dup(struct stack *stack) in stack_dup()
122 stack_swap(struct stack *stack) in stack_swap()
136 stack_grow(struct stack *stack) in stack_grow()
149 stack_pushnumber(struct stack *stack, struct number *b) in stack_pushnumber()
159 stack_pushstring(struct stack *stack, char *string) in stack_pushstring()
169 stack_push(struct stack *stack, struct value *v) in stack_push()
189 stack_tos(const struct stack *stack) in stack_tos()
198 stack_set_tos(struct stack *stack, struct value *v) in stack_set_tos()
212 stack_pop(struct stack *stack) in stack_pop()
221 stack_popnumber(struct stack *stack) in stack_popnumber()
236 stack_popstring(struct stack *stack) in stack_popstring()
251 stack_clear(struct stack *stack) in stack_clear()
261 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) in stack_print()
344 frame_assign(struct stack *stack, size_t i, const struct value *v) in frame_assign()
362 frame_retrieve(const struct stack *stack, size_t i) in frame_retrieve()