Home | History | Annotate | Download | only in cp

Lines Matching defs:temporary_obstack

45 static struct obstack temporary_obstack;
65 obstack_1grow (&temporary_obstack, c);
75 obstack_1grow (&temporary_obstack, c);
78 obstack_1grow (&temporary_obstack, '\0');
80 return (char *) obstack_finish (&temporary_obstack);
147 obstack_1grow (&temporary_obstack, c);
148 if (obstack_object_size (&temporary_obstack) == 0)
150 obstack_1grow (&temporary_obstack, '\0');
151 return (char *) obstack_finish (&temporary_obstack);
170 gcc_obstack_init (&temporary_obstack);
205 obstack_free (&temporary_obstack, buf);