| /openbsd/src/gnu/gcc/gcc/ |
| D | print-rtl.c | 46 static FILE *outfile; variable 72 print_decl_name (FILE *outfile, tree node) in print_decl_name() argument 75 fputs (IDENTIFIER_POINTER (DECL_NAME (node)), outfile); in print_decl_name() 79 fprintf (outfile, "L." HOST_WIDE_INT_PRINT_DEC, LABEL_DECL_UID (node)); in print_decl_name() 83 fprintf (outfile, "%c.%u", c, DECL_UID (node)); in print_decl_name() 89 print_mem_expr (FILE *outfile, tree expr) in print_mem_expr() argument 94 print_mem_expr (outfile, TREE_OPERAND (expr, 0)); in print_mem_expr() 96 fputs (" <variable>", outfile); in print_mem_expr() 97 fputc ('.', outfile); in print_mem_expr() 98 print_decl_name (outfile, TREE_OPERAND (expr, 1)); in print_mem_expr() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/ |
| D | print-rtl.c | 53 static FILE *outfile; variable 81 print_mem_expr (outfile, expr) in print_mem_expr() argument 82 FILE *outfile; in print_mem_expr() 88 print_mem_expr (outfile, TREE_OPERAND (expr, 0)); 90 fputs (" <variable>", outfile); 92 fprintf (outfile, ".%s", 97 fputs (" (*", outfile); 98 print_mem_expr (outfile, TREE_OPERAND (expr, 0)); 99 fputs (")", outfile); 102 fprintf (outfile, " %s", IDENTIFIER_POINTER (DECL_NAME (expr))); [all …]
|
| /openbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | symmisc.c | 81 struct ui_file *outfile; member 300 dump_msymbols (struct objfile *objfile, struct ui_file *outfile) in dump_msymbols() argument 306 fprintf_filtered (outfile, "\nObject file %s:\n\n", objfile->name); in dump_msymbols() 309 fprintf_filtered (outfile, "No minimal symbols found.\n"); in dump_msymbols() 348 fprintf_filtered (outfile, "[%2d] %c ", index, ms_type); in dump_msymbols() 349 print_address_numeric (SYMBOL_VALUE_ADDRESS (msymbol), 1, outfile); in dump_msymbols() 350 fprintf_filtered (outfile, " %s", DEPRECATED_SYMBOL_NAME (msymbol)); in dump_msymbols() 352 fprintf_filtered (outfile, " section %s", in dump_msymbols() 357 fprintf_filtered (outfile, " %s", SYMBOL_DEMANGLED_NAME (msymbol)); in dump_msymbols() 361 fprintf_filtered (outfile, " %s", msymbol->filename); in dump_msymbols() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/t/op/ |
| D | sysio.t | 54 $outfile = tempfile(); 56 open(O, ">$outfile") || die "sysio.t: cannot write $outfile: $!"; 69 ok(!-s $outfile); 84 close O; open(O, ">>$outfile") || die "sysio.t: cannot write $outfile: $!"; 87 ok(!-s $outfile); 99 close O; open(O, ">>$outfile") || die "sysio.t: cannot write $outfile: $!"; 102 ok(!-s $outfile); 113 close O; open(O, ">>$outfile") || die "sysio.t: cannot write $outfile: $!"; 116 ok(!-s $outfile); 126 close O; open(O, ">>$outfile") || die "sysio.t: cannot write $outfile: $!"; [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/podlators/t/general/ |
| D | pod-parser.t | 46 my $outfile = File::Spec->catfile('t', 'tmp', "tmp$$.man"); 47 open(my $output, '>', $outfile) or BAIL_OUT("cannot open $outfile: $!"); 49 close($output) or BAIL_OUT("cannot write to $outfile: $!"); 50 my $got = slurp($outfile, 'man'); 52 unlink($outfile); 57 $outfile = File::Spec->catfile('t', 'tmp', "tmp$$.txt"); 58 open($output, '>', $outfile) or BAIL_OUT("cannot open $outfile: $!"); 60 close($output) or BAIL_OUT("cannot write to $outfile: $!"); 61 $got = slurp($outfile); 63 unlink($outfile); [all …]
|
| D | filehandle.t | 52 my $outfile = File::Spec->catfile('t', 'tmp', "tmp$$.man"); 54 open(my $output, '>', $outfile) or BAIL_OUT("cannot open $outfile: $!"); 58 close($output) or BAIL_OUT("cannot write to $outfile: $!"); 61 my $got = slurp($outfile, 'man'); 65 unlink($outfile); 68 $outfile = File::Spec->catfile('t', 'tmp', "tmp$$.txt"); 70 open($output, '>', $outfile) or BAIL_OUT("cannot open $outfile: $!"); 74 close($output) or BAIL_OUT("cannot write to $outfile: $!"); 78 $got = slurp($outfile); 83 unlink($infile, $outfile);
|
| D | basic.t | 101 my $outfile = File::Spec->catfile('t', 'tmp', "out$$.$suffix"); 102 open(my $output, '>', $outfile) 103 or BAIL_OUT("cannot create $outfile for failed output: $!"); 105 or BAIL_OUT("cannot write failed output to $outfile: $!"); 107 or BAIL_OUT("cannot write failed output to $outfile: $!"); 108 diag("Non-matching output left in $outfile");
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/ |
| D | HTMLBatch.pm | 219 my($self, $module, $mod2path, $outdir, $outfile) = @_; 229 $outfile ||= do { 240 ref($page), " render ($depth) $module => $outfile"); 242 $self->muse($self->{"__batch_conv_page_count"} + 1, "/$total: $module => $outfile") 246 $page->batch_mode_page_object_init($self, $module, $infile, $outfile, $depth) 249 $self->batch_mode_page_object_init($page, $module, $infile, $outfile, $depth) 257 if( $retval = $page->parse_from_file($infile, $outfile) ) { 259 $self->note_for_contents_file( \@namelets, $infile, $outfile ); 261 $self->muse("Odd, parse_from_file(\"$infile\", \"$outfile\") returned false."); 264 $page->batch_mode_page_object_kill($self, $module, $infile, $outfile, $depth) [all …]
|
| /openbsd/src/usr.bin/rpcgen/ |
| D | rpc_main.c | 70 char *outfile;/* output module name */ member 153 checkfiles(cmd.infile, cmd.outfile); in main() 158 c_output(cmd.infile, "-DRPC_XDR", DONT_EXTEND, cmd.outfile); in main() 160 h_output(cmd.infile, "-DRPC_HDR", DONT_EXTEND, cmd.outfile); in main() 162 l_output(cmd.infile, "-DRPC_CLNT", DONT_EXTEND, cmd.outfile); in main() 165 cmd.outfile, cmd.mflag, cmd.nflag); in main() 167 t_output(cmd.infile, "-DRPC_TBL", DONT_EXTEND, cmd.outfile); in main() 169 svc_output(cmd.infile, "-DRPC_SERVER", DONT_EXTEND, cmd.outfile); in main() 171 clnt_output(cmd.infile, "-DRPC_CLIENT", DONT_EXTEND, cmd.outfile); in main() 237 open_output(char *infile, char *outfile) in open_output() argument [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/IO-Compress/t/ |
| D | 011-streamzip.t | 95 my ($infile, $outfile); 96 my $lex = LexFile->new( $infile, $outfile ); 99 check "$Perl ${binDir}/streamzip <$infile >$outfile"; 102 unzip $outfile => \$uncompressed; 109 my ($infile, $outfile); 110 my $lex = LexFile->new( $infile, $outfile ); 113 check "$Perl ${binDir}/streamzip -zipfile $outfile <$infile"; 116 unzip $outfile => \$uncompressed; 154 my ($infile, $outfile); 155 my $lex = LexFile->new( $infile, $outfile ); [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Pod-Checker/t/pod/ |
| D | testpchk.pl | 51 my $outfile = $args{'-Out'} || croak "No output file given!"; 66 for ($infile, $outfile, $cmpfile) { 70 podchecker($infile, $outfile, -warnings => 200); 71 if ( testcmp({'-cmplines' => \&msgcmp}, $outfile, $cmpfile) ) { 72 $different = "$outfile is different from $cmpfile"; 73 system("diff -u $cmpfile $outfile") if $ENV{TEST_POD_CHECK_DIFF}; 76 unlink($outfile); 86 my ($outfile, $errfile) = ("", ""); 98 $outfile = $testdir . $testname . '.OUT'; 116 -Out => $outfile, [all …]
|
| /openbsd/src/usr.bin/uudecode/ |
| D | uudecode.c | 53 static const char *infile, *outfile; variable 102 outfile = optarg; /* set the output filename */ in main() 164 outfile = "/dev/stdout"; in decode() 262 outfile = q; in decode2() 265 if (pflag || strcmp(outfile, "/dev/stdout") == 0) in decode2() 269 if (lstat(outfile, &st) == 0) { in decode2() 271 warnc(EEXIST, "%s: %s", infile, outfile); in decode2() 278 if (unlink(outfile) == 0 || errno == ENOENT) in decode2() 280 warn("%s: unlink %s", infile, outfile); in decode2() 283 warnc(EISDIR, "%s: %s", infile, outfile); in decode2() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Pod-Usage/t/pod/ |
| D | testp2pt.pl | 114 my ($infile, $outfile) = @_; 117 $text_parser->parse_from_file($infile, $outfile); 123 my $outfile = $args{'-Out'} || croak "No output file given!"; 137 podinc2plaintext($infile, $outfile); 138 if ( testcmp($outfile, $cmpfile) ) { 139 $different = "$outfile is different from $cmpfile"; 142 unlink($outfile); 152 my ($outfile, $errfile) = ("", ""); 164 $outfile = $testdir . $testname . '.OUT'; 182 -Out => $outfile, [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/podlators/t/man/ |
| D | encoding.t | 72 my $outfile = File::Spec->catfile('t', 'tmp', "encoding$$.$encoding"); 73 open(my $output, '>', $outfile) 74 or BAIL_OUT("cannot create $outfile for failed output: $!"); 76 or BAIL_OUT("cannot write failed output to $outfile: $!"); 78 or BAIL_OUT("cannot write failed output to $outfile: $!"); 79 diag("Non-matching output left in $outfile");
|
| /openbsd/src/usr.bin/libtool/LT/Mode/ |
| D | Compile.pm | 86 my ($outfile, $odir, $ofile, $srcfile, $srcext); 93 ($outfile = ($gp->o)[0]) =~ s/\.o$/.lo/; 94 $odir = dirname($outfile); 95 $ofile = basename($outfile); 112 $outfile = "$odir/$ofile"; 115 tsay {"outfile = $outfile"}; 128 $lofile->write($outfile);
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Pod-Usage/t/inc/Pod/ |
| D | Parser.pm | 1174 my ($infile, $outfile) = @_; 1216 if (ref $outfile) { 1218 if (ref($outfile) =~ /^(ARRAY|HASH|CODE)$/) { 1221 elsif (ref($outfile) eq 'SCALAR') { 1232 $myData{_OUTFILE} = ${$outfile}; 1233 $out_fh = $outfile; 1236 elsif (!defined($outfile) || !length($outfile) || ($outfile eq '-') 1237 || ($outfile =~ /^>&?(?:STDOUT|1)$/i)) 1244 $outfile ||= '-'; 1249 elsif ($outfile =~ /^>&(STDERR|2)$/i) { [all …]
|
| /openbsd/src/lib/libexpat/tests/ |
| D | xmltest.sh | 86 $XMLWF -p -N -d "$OUTPUT$reldir" "$file" > outfile || return $? 87 read outdata < outfile 90 $DIFF "$OUTPUT$reldir$file" "out/$file" > outfile 91 if [ -s outfile ] ; then 92 cp outfile "$OUTPUT$reldir$file.diff" 136 rm -f outfile 145 rm outfile
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Win32API-File/inc/ExtUtils/ |
| D | Myconst2perl.pm | 41 my( $outfile, @perlfiles, %perlfilecodes, @cfiles, %cfilecodes ); 76 OUTFILE => \$outfile, 94 $outfile= $base . "_pc" . $ext; 103 $outfile= $base . $ext; 109 $outfile= $base . ".h"; 111 $outfile= $hvAttr->{OUTFILE} if $hvAttr->{OUTFILE}; 189 my( $outfile, $writeperl, $ifdef, $export, $importto, @importlist, 197 OUTFILE => \$outfile, 206 warn "Writing $outfile...\n"; 207 open( STDOUT, ">$outfile" ) or die "Can't create $outfile: $!\n"; [all …]
|
| /openbsd/src/gnu/usr.bin/perl/Porting/ |
| D | manisort | 18 my $outfile; 21 GetOptions ('output=s' => \$outfile, 48 if (defined($outfile)) { 49 open(my $OUT, '>', $outfile) 50 or die("Can't open output file '$outfile': $!");
|
| /openbsd/src/gnu/usr.sbin/mkhybrid/src/ |
| D | write.c | 150 extern char *outfile; in FDECL4() 153 unlink(outfile); in FDECL4() 154 snprintf(nbuf, sizeof nbuf, "%s_%02d", outfile, idx++); in FDECL4() 239 unsigned int, size, FILE *, outfile, unsigned int, off) in FDECL4() argument 242 unsigned int, size, FILE *, outfile) in FDECL4() 275 xfwrite(buffer, 1, use, outfile); in FDECL4() 302 static void FDECL1(write_files, FILE *, outfile) in FDECL1() argument 310 xfwrite(dwpnt->table, 1, ROUND_UP(dwpnt->size), outfile); in FDECL1() 320 vms_write_one_file(dwpnt->name, dwpnt->size, outfile); in FDECL1() 323 write_one_file(dwpnt->name, dwpnt->size, outfile, dwpnt->off); in FDECL1() [all …]
|
| /openbsd/src/usr.bin/sed/ |
| D | process.c | 81 fwrite(ps, 1, psl, outfile);\ 82 if (psanl) fputc('\n', outfile);\ 126 (void)fprintf(outfile, "%s", cp->t); in process() 158 (void)fprintf(outfile, "%s", cp->t); in process() 252 (void)fprintf(outfile, "%lu\n", linenum); in process() 452 outfile); in flush_appends() 466 (void)fwrite(buf, sizeof(char), count, outfile); in flush_appends() 470 if (ferror(outfile)) in flush_appends() 485 (void)fprintf(outfile, "\\\n"); in lputs() 490 (void)fputc(*s, outfile); in lputs() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Win32API-File/ |
| D | Makefile.PL | 77 my( $outfile, @perlfiles, @cfiles, $bin, $obj, $final, $noreb ); 80 ParseAttribs( $module, $hvAttr->{$module}, { OUTFILE => \$outfile, 89 # How to create F<$outfile> via ExtUtils::Myconst2perl::Myconst2perl: 91 $outfile: @perlfiles @cfiles Makefile" . ' 112 $bin: $outfile" . ' 115 $(DEFINE)' . $outfile . " " 142 push( @clean, $outfile, $bin, $obj, $_final . "_to_blib" ); 149 push( @realclean, $outfile ) unless $noreb;
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/lib/IO/ |
| D | c55Capture.pm | 81 my $outfile = temp_file_name(); 86 open $handle, "> $outfile" or die "Can't create $outfile: $!"; 92 my $ret = slurp($outfile); 93 1 while unlink $outfile;
|
| /openbsd/src/gnu/lib/libiberty/src/ |
| D | gather-docs | 47 $outfile = shift; 49 if ($outfile !~ /\S/ || ! -f "$srcdir/Makefile.in" ) { 103 if (!open (OUT, "> $outfile")) { 104 print STDERR "Cannot open $outfile for writing: $!\n"; 108 print "Writing $outfile\n" if $verbose;
|
| /openbsd/src/usr.bin/uuencode/ |
| D | uuencode.c | 66 char *outfile; in main() local 74 outfile = NULL; in main() 88 outfile = optarg; in main() 97 if (argc == 2 || outfile) { in main() 123 if (outfile != NULL) { in main() 124 output = fopen(outfile, "w+"); in main() 126 err(1, "unable to open %s for output", outfile); in main()
|