Lines Matching defs:stack
38 stack_init(struct stack *stack) in stack_init()
47 stack_empty(const struct stack *stack) in stack_empty()
103 stack_size(const struct stack *stack) in stack_size()
110 stack_dup(struct stack *stack) in stack_dup()
124 stack_swap(struct stack *stack) in stack_swap()
138 stack_grow(struct stack *stack) in stack_grow()
151 stack_pushnumber(struct stack *stack, struct number *b) in stack_pushnumber()
161 stack_pushstring(struct stack *stack, char *string) in stack_pushstring()
171 stack_push(struct stack *stack, struct value *v) in stack_push()
191 stack_tos(const struct stack *stack) in stack_tos()
200 stack_set_tos(struct stack *stack, struct value *v) in stack_set_tos()
214 stack_pop(struct stack *stack) in stack_pop()
223 stack_popnumber(struct stack *stack) in stack_popnumber()
240 stack_popstring(struct stack *stack) in stack_popstring()
257 stack_clear(struct stack *stack) in stack_clear()
268 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) in stack_print()
351 frame_assign(struct stack *stack, size_t i, const struct value *v) in frame_assign()
369 frame_retrieve(const struct stack *stack, size_t i) in frame_retrieve()