Searched refs:temporary_obstack (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/gcc/cp/ |
| H A D | repo.c | 52 static struct obstack temporary_obstack; variable 72 obstack_1grow (&temporary_obstack, c); in extract_string() 82 obstack_1grow (&temporary_obstack, c); in extract_string() 85 obstack_1grow (&temporary_obstack, '\0'); in extract_string() 87 return (char *) obstack_finish (&temporary_obstack); in extract_string() 146 obstack_1grow (&temporary_obstack, c); in afgets() 147 if (obstack_object_size (&temporary_obstack) == 0) in afgets() 149 obstack_1grow (&temporary_obstack, '\0'); in afgets() 150 return (char *) obstack_finish (&temporary_obstack); in afgets() 168 gcc_obstack_init (&temporary_obstack); in init_repo() [all …]
|
| H A D | ChangeLog-2000 | 843 * repo.c (temporary_obstack): Make it a structure, not a pointer.
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | tlink.c | 301 obstack_grow (&temporary_obstack, s, p - s); in frob_extension() 302 return obstack_copy0 (&temporary_obstack, ext, strlen (ext)); in frob_extension() 320 return obstack_fgets (stream, &temporary_obstack); in tfgets() 409 obstack_free (&temporary_obstack, temporary_firstobj); in read_repo_file() 494 obstack_ptr_grow (&temporary_obstack, c_file_name); in recompile_files() 526 obstack_ptr_grow (&temporary_obstack, obstack_finish (&arg_stack)); in recompile_files() 529 obstack_ptr_grow (&temporary_obstack, f->main); in recompile_files() 530 obstack_ptr_grow (&temporary_obstack, NULL); in recompile_files() 531 argv = XOBFINISH (&temporary_obstack, char **); in recompile_files() 544 obstack_free (&temporary_obstack, temporary_firstobj); in recompile_files() [all …]
|
| H A D | collect2.c | 205 struct obstack temporary_obstack; variable 423 obstack_1grow (&temporary_obstack, c); in extract_string() 431 obstack_1grow (&temporary_obstack, c); in extract_string() 434 obstack_1grow (&temporary_obstack, '\0'); in extract_string() 436 return XOBFINISH (&temporary_obstack, char *); in extract_string() 451 obstack_1grow (&temporary_obstack, c); in dump_file() 452 if (obstack_object_size (&temporary_obstack) > 0) in dump_file() 456 obstack_1grow (&temporary_obstack, '\0'); in dump_file() 457 word = XOBFINISH (&temporary_obstack, const char *); in dump_file() 850 obstack_begin (&temporary_obstack, 0); in main() [all …]
|
| H A D | collect2.h | 40 extern struct obstack temporary_obstack;
|
| H A D | ChangeLog-1999 | 9295 (ldout, c_file_name, temporary_obstack, permanent_obstack, 9300 (vflag, debug, ldout, c_file_name, temporary_obstack,
|