| /openbsd-src/gnu/gcc/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.
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/cp/ |
| H A D | repo.c | 52 static struct obstack temporary_obstack; variable 232 obstack_1grow (&temporary_obstack, c); 240 obstack_1grow (&temporary_obstack, c); 243 obstack_1grow (&temporary_obstack, '\0'); 245 return obstack_finish (&temporary_obstack); 307 obstack_1grow (&temporary_obstack, c); 308 if (obstack_object_size (&temporary_obstack) == 0) 310 obstack_1grow (&temporary_obstack, '\0'); 311 return obstack_finish (&temporary_obstack); 323 gcc_obstack_init (&temporary_obstack); [all …]
|
| H A D | ChangeLog | 10715 * repo.c (temporary_obstack): Make it a structure, not a pointer.
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | tlink.c | 310 obstack_grow (&temporary_obstack, s, p - s); 311 return obstack_copy0 (&temporary_obstack, ext, strlen (ext)); 332 return obstack_fgets (stream, &temporary_obstack); 426 obstack_free (&temporary_obstack, temporary_firstobj); 494 obstack_grow (&temporary_obstack, "cd ", 3); in recompile_files() 495 obstack_grow (&temporary_obstack, f->dir, strlen (f->dir)); in recompile_files() 496 obstack_grow (&temporary_obstack, "; ", 2); in recompile_files() 497 obstack_grow (&temporary_obstack, c_file_name, strlen (c_file_name)); in recompile_files() 498 obstack_1grow (&temporary_obstack, ' '); in recompile_files() 499 obstack_grow (&temporary_obstack, f->args, strlen (f->args)); in recompile_files() [all …]
|
| H A D | collect2.h | 40 extern struct obstack temporary_obstack;
|
| H A D | collect2.c | 234 struct obstack temporary_obstack; variable 485 obstack_1grow (&temporary_obstack, c); 493 obstack_1grow (&temporary_obstack, c); 496 obstack_1grow (&temporary_obstack, '\0'); 498 return obstack_finish (&temporary_obstack); 515 obstack_1grow (&temporary_obstack, c); 516 if (obstack_object_size (&temporary_obstack) > 0) 520 obstack_1grow (&temporary_obstack, '\0'); 521 word = obstack_finish (&temporary_obstack); 551 obstack_free (&temporary_obstack, temporary_firstobj); [all …]
|
| H A D | ChangeLog.2 | 9295 (ldout, c_file_name, temporary_obstack, permanent_obstack, 9300 (vflag, debug, ldout, c_file_name, temporary_obstack,
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
| H A D | 20000818-1.c | 5 void *temporary_obstack; variable 30 obstack_1grow (&temporary_obstack, ch); in yylex() 39 obstack_1grow (&temporary_obstack, ch); in yylex()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | parse.h | 33 extern struct obstack temporary_obstack; 229 obstack_grow (&temporary_obstack, "val$", 4); \ 230 obstack_grow (&temporary_obstack, \ 232 obstack_1grow (&temporary_obstack, '\0'); \ 233 mangled_name = obstack_finish (&temporary_obstack); \ 235 obstack_free (&temporary_obstack, mangled_name); \ 244 obstack_grow (&temporary_obstack, "parm$", 5); \ 245 obstack_grow (&temporary_obstack, \ 247 obstack_1grow (&temporary_obstack, '\0'); \ 248 mangled_name = obstack_finish (&temporary_obstack); \ [all …]
|
| H A D | typeck.c | 594 extern struct obstack temporary_obstack; 604 obstack_grow (&temporary_obstack, 607 obstack_1grow (&temporary_obstack, '\0'); 609 sig = get_identifier (obstack_base (&temporary_obstack)); 611 obstack_free (&temporary_obstack, obstack_base (&temporary_obstack)); 672 extern struct obstack temporary_obstack; 674 obstack_1grow (&temporary_obstack, '('); 675 obstack_grow (&temporary_obstack, 677 obstack_1grow (&temporary_obstack, ')'); 680 obstack_grow0 (&temporary_obstack, [all …]
|
| H A D | lex.c | 1313 obstack_1grow (&temporary_obstack, '\0'); 1314 string = obstack_finish (&temporary_obstack); 1322 obstack_free (&temporary_obstack, string); 1555 obstack_1grow (&temporary_obstack, '\0'); 1556 string = obstack_finish (&temporary_obstack); 1686 obstack_1grow (&temporary_obstack, (char)unicode); 1689 obstack_1grow (&temporary_obstack, 1691 obstack_1grow (&temporary_obstack, 1696 obstack_1grow (&temporary_obstack, 1698 obstack_1grow (&temporary_obstack, [all …]
|
| H A D | class.c | 63 struct obstack temporary_obstack; variable 999 (&temporary_obstack, type)); 1825 java_mangle_vtable (&temporary_obstack, type), dtype); 1909 obstack_grow (&temporary_obstack, buffer, strlen (buffer)); 1919 obstack_grow (&temporary_obstack, buffer, strlen (buffer)); 1921 obstack_1grow (&temporary_obstack, '\0'); 1922 report = obstack_finish (&temporary_obstack); 1924 obstack_free (&temporary_obstack, report); 1954 (&temporary_obstack, field)); 2045 java_mangle_decl (&temporary_obstack, [all …]
|
| H A D | jv-scan.c | 194 gcc_obstack_init (&temporary_obstack);
|
| H A D | parse.c | 5313 obstack_grow (&temporary_obstack, "[]", 2); in yyparse() 5314 obstack_1grow (&temporary_obstack, '\0'); in yyparse() 5315 sig = obstack_finish (&temporary_obstack); in yyparse() 5648 obstack_grow (&temporary_obstack, in yyparse() 5652 obstack_grow (&temporary_obstack, "[]", 2); in yyparse() 5653 obstack_1grow (&temporary_obstack, '\0'); in yyparse() 5654 ptr = obstack_finish (&temporary_obstack); in yyparse() 6625 obstack_grow0 (&temporary_obstack, 6627 remainder = obstack_finish (&temporary_obstack); 6930 obstack_grow (&temporary_obstack, [all …]
|
| H A D | parse.y | 2135 obstack_grow (&temporary_obstack, "[]", 2); 2136 obstack_1grow (&temporary_obstack, '\0'); 2137 sig = obstack_finish (&temporary_obstack); 2389 obstack_grow (&temporary_obstack, 2393 obstack_grow (&temporary_obstack, "[]", 2); 2394 obstack_1grow (&temporary_obstack, '\0'); 2395 ptr = obstack_finish (&temporary_obstack); 3060 obstack_grow0 (&temporary_obstack, 3062 remainder = obstack_finish (&temporary_obstack); 3365 obstack_grow (&temporary_obstack, [all …]
|
| H A D | jcf-parse.c | 69 extern struct obstack temporary_obstack; 985 obstack_grow0 (&temporary_obstack, list, len); 986 value = obstack_finish (&temporary_obstack);
|
| H A D | parse-scan.y | 53 struct obstack temporary_obstack; variable
|
| H A D | parse-scan.c | 295 struct obstack temporary_obstack; variable
|
| H A D | jcf-write.c | 44 extern struct obstack temporary_obstack; 3437 struct obstack *work = &temporary_obstack;
|
| H A D | ChangeLog | 4198 * parse.y (temporary_obstack): Extern declaration removed. 4704 * class.c (temporary_obstack): Remove.
|
| /openbsd-src/gnu/gcc/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() 491 obstack_free (&temporary_obstack, temporary_firstobj); in dump_file() [all …]
|
| H A D | collect2.h | 40 extern struct obstack temporary_obstack;
|