Lines Matching defs:stack
38 stack_init(struct stack *stack) in stack_init()
46 stack_empty(const struct stack *stack) in stack_empty()
97 stack_size(const struct stack *stack) in stack_size()
103 stack_dup(struct stack *stack) in stack_dup()
117 stack_swap(struct stack *stack) in stack_swap()
131 stack_grow(struct stack *stack) in stack_grow()
144 stack_pushnumber(struct stack *stack, struct number *b) in stack_pushnumber()
153 stack_pushstring(struct stack *stack, char *string) in stack_pushstring()
162 stack_push(struct stack *stack, struct value *v) in stack_push()
181 stack_tos(const struct stack *stack) in stack_tos()
189 stack_set_tos(struct stack *stack, struct value *v) in stack_set_tos()
202 stack_pop(struct stack *stack) in stack_pop()
210 stack_popnumber(struct stack *stack) in stack_popnumber()
224 stack_popstring(struct stack *stack) in stack_popstring()
238 stack_clear(struct stack *stack) in stack_clear()
247 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) in stack_print()
328 frame_assign(struct stack *stack, size_t index, const struct value *v) in frame_assign()
346 frame_retrieve(const struct stack *stack, size_t index) in frame_retrieve()