Lines Matching defs:stack
35 stack_init(struct stack *stack) in stack_init()
43 stack_empty(const struct stack *stack) in stack_empty()
92 stack_size(const struct stack *stack) in stack_size()
98 stack_dup(struct stack *stack) in stack_dup()
112 stack_swap(struct stack *stack) in stack_swap()
126 stack_grow(struct stack *stack) in stack_grow()
139 stack_pushnumber(struct stack *stack, struct number *b) in stack_pushnumber()
148 stack_pushstring(struct stack *stack, char *string) in stack_pushstring()
157 stack_push(struct stack *stack, struct value *v) in stack_push()
176 stack_tos(const struct stack *stack) in stack_tos()
184 stack_set_tos(struct stack *stack, struct value *v) in stack_set_tos()
197 stack_pop(struct stack *stack) in stack_pop()
205 stack_popnumber(struct stack *stack) in stack_popnumber()
219 stack_popstring(struct stack *stack) in stack_popstring()
233 stack_clear(struct stack *stack) in stack_clear()
242 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) in stack_print()
323 frame_assign(struct stack *stack, size_t index, const struct value *v) in frame_assign()
341 frame_retrieve(const struct stack *stack, size_t index) in frame_retrieve()