Home
last modified time | relevance | path

Searched refs:op_stack (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dcppexp.c745 struct op *top = pfile->op_stack;
877 if (top != pfile->op_stack)
1041 size_t old_size = (size_t) (pfile->op_limit - pfile->op_stack);
1044 pfile->op_stack = (struct op *) xrealloc (pfile->op_stack,
1046 pfile->op_limit = pfile->op_stack + new_size;
1048 return pfile->op_stack + old_size;
H A Dcpphash.h432 struct op *op_stack, *op_limit; member
H A Dcppinit.c598 free (pfile->op_stack);
H A DChangeLog.79783 (struct cpp_reader): New members op_stack, op_limit.
/openbsd-src/gnu/gcc/libcpp/
H A Dexpr.c755 struct op *top = pfile->op_stack; in _cpp_parse_expr()
885 if (top != pfile->op_stack) in _cpp_parse_expr()
1043 size_t old_size = (size_t) (pfile->op_limit - pfile->op_stack); in _cpp_expand_op_stack()
1046 pfile->op_stack = XRESIZEVEC (struct op, pfile->op_stack, new_size); in _cpp_expand_op_stack()
1047 pfile->op_limit = pfile->op_stack + new_size; in _cpp_expand_op_stack()
1049 return pfile->op_stack + old_size; in _cpp_expand_op_stack()
H A Dinternal.h424 struct op *op_stack, *op_limit; member
H A Dinit.c236 free (pfile->op_stack); in cpp_destroy()