Home
last modified time | relevance | path

Searched refs:outfile (Results 1 – 25 of 203) sorted by relevance

123456789

/openbsd-src/gnu/gcc/gcc/
H A Dprint-rtl.c46 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/
H A Dprint-rtl.c53 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/
H A Dsymmisc.c81 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/
H A Dsysio.t54 $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/
H A Dpod-parser.t46 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 …]
H A Dfilehandle.t52 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);
H A Dbasic.t101 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/
H A DHTMLBatch.pm219 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,
[all...]
/openbsd-src/usr.bin/rpcgen/
H A Drpc_main.c70 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
376 c_output(infile,define,extend,outfile) c_output() argument
467 h_output(infile,define,extend,outfile) h_output() argument
518 s_output(argc,argv,infile,define,extend,outfile,nomain,netflag) s_output() argument
620 l_output(infile,define,extend,outfile) l_output() argument
656 t_output(infile,define,extend,outfile) t_output() argument
682 svc_output(infile,define,extend,outfile) svc_output() argument
718 clnt_output(infile,define,extend,outfile) clnt_output() argument
826 checkfiles(infile,outfile) checkfiles() argument
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/
H A D011-streamzip.t95 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/ext/Pod-Html/t/lib/
H A DTesting.pm474 my $outfile = catpath $vol, $new_dir, "$podstub.html";
478 outfile => $outfile,
488 my $result = _get_html($outfile);
495 outfile => $outfile,
502 1 while unlink $outfile;
511 outfile => $args->{outfile},
555 my $outfile
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Checker/t/pod/
H A Dtestpchk.pl51 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/
H A Duudecode.c53 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/
H A Dtestp2pt.pl114 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/
H A Dencoding.t72 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/
H A DCompile.pm86 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/
H A DParser.pm1174 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/
H A Dxmltest.sh86 $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/bignum/gentest/
H A Dscope-nested-const.sh15 my $outfile = "t/scope-nested-const.t";
25 open my($fh), ">", $outfile
26 or die "$outfile: can't open file for writing: $!";
36 print $fh <<'EOF' or die "$outfile: print failed: $!";
59 print $fh <<"EOF" or die "$outfile: print failed: $!";
108 or die "$outfile: can't close file after writing: $!";
110 print "Wrote '$outfile'\n";
H A Dscope-nested-hex-oct.sh15 my $outfile = "t/scope-nested-hex-oct.t";
25 open my($fh), ">", $outfile
26 or die "$outfile: can't open file for writing: $!";
36 print $fh <<'EOF' or die "$outfile: print failed: $!";
59 print $fh <<"EOF" or die "$outfile: print failed: $!";
108 or die "$outfile: can't close file after writing: $!";
110 print "Wrote '$outfile'\n";
/openbsd-src/gnu/usr.bin/perl/cpan/Win32API-File/inc/ExtUtils/
H A DMyconst2perl.pm41 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/
H A Dmanisort18 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/
H A Dwrite.c150 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/
H A Dprocess.c81 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/Test-Harness/t/lib/IO/
H A Dc55Capture.pm81 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;

123456789