Searched refs:fout (Results 1 - 14 of 14) sorted by relevance

/haiku-buildtools/jam/
H A Dmkjambase.c31 FILE *fout; local
41 if( !( fout = fopen( argv[1], "w" ) ) )
58 fprintf( fout, "/* Generated by mkjambase from Jambase */\n" );
59 fprintf( fout, "const char *jambase[] = {\n" );
72 fprintf( fout, "/* %s */\n", *argv );
76 fprintf( fout, "### %s ###\n", *argv );
97 putc( '"', fout );
102 case '\\': putc( '\\', fout ); putc( '\\', fout ); break;
103 case '"': putc( '\\', fout ); put
[all...]
/haiku-buildtools/gcc/mpfr/tests/
H A Dtfprintf.c60 check (FILE *fout, const char *fmt, mpfr_t x) argument
62 if (mpfr_fprintf (fout, fmt, x) == -1)
64 mpfr_printf ("Error in mpfr_fprintf(fout, \"%s\", %Re)\n",
68 fputc ('\n', fout);
72 check_vfprintf (FILE *fout, const char *fmt, ...) argument
77 if (mpfr_vfprintf (fout, fmt, ap) == -1)
79 mpfr_printf ("Error in mpfr_vfprintf(fout, \"%s\", ...)\n", fmt);
86 fputc ('\n', fout);
90 check_special (FILE *fout) argument
97 check (fout, "
136 check_mixed(FILE *fout) argument
276 check_random(FILE *fout, int nb_tests) argument
369 bug_20090316(FILE *fout) argument
385 FILE *fout; local
[all...]
H A Dtout_str.c28 FILE *fout; variable
39 fprintf (fout, "%1.19e base %d rnd %d:\n ", d, base, rnd);
40 mpfr_out_str (fout, base, (base == 2) ? prec : 0, x, rnd);
41 fputc ('\n', fout);
54 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
63 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
72 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
81 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
90 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
114 fout
[all...]
H A Dtvalist.c45 test (FILE *fout, const char *fmt, ...) argument
54 fct (fout, fmt, ap);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dfast-math-pr43074.c4 pvslockprocess(float *fout, float *fin, int framesize) argument
10 fout[i] = fin[i];
11 fout[i+1] = fin[i+1];
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/objects/char/
H A D9.cc33 FILE* fout = fopen(name, "w"); local
34 fputs("abc\n", fout);
35 fclose(fout);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/stdio_sync_filebuf/char/
H A D1.cc35 FILE* fout = fopen(name, "w"); local
36 VERIFY( fwrite(c_lit, 1, size, fout) == size );
37 fclose(fout);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/stdio_sync_filebuf/wchar_t/
H A D1.cc35 FILE* fout = fopen(name, "w"); local
36 VERIFY( fwrite(c_lit, 1, size, fout) == size );
37 fclose(fout);
/haiku-buildtools/legacy/binutils/bfd/
H A Dvms-hdr.c211 char *fname, *fout, *fptr; local
216 fout = strrchr (fname, ']');
217 if (fout == 0)
218 fout = strchr (fname, ':');
219 if (fout != 0)
220 fout++;
222 fout = fname;
230 fptr = fout;
236 || ((fptr - fout) > 31))
239 _bfd_vms_output_counted (abfd, fout);
[all...]
/haiku-buildtools/gcc/zlib/contrib/minizip/
H A Dminiunz.c322 FILE *fout=NULL; local
411 fout=FOPEN_FUNC(write_filename,"wb");
413 if ((fout==NULL) && ((*popt_extract_without_path)==0) &&
420 fout=FOPEN_FUNC(write_filename,"wb");
423 if (fout==NULL)
429 if (fout!=NULL)
442 if (fwrite(buf,err,1,fout)!=1)
450 if (fout)
451 fclose(fout);
484 FILE* fout local
[all...]
/haiku-buildtools/binutils/zlib/contrib/minizip/
H A Dminiunz.c322 FILE *fout=NULL; local
411 fout=FOPEN_FUNC(write_filename,"wb");
413 if ((fout==NULL) && ((*popt_extract_without_path)==0) &&
420 fout=FOPEN_FUNC(write_filename,"wb");
423 if (fout==NULL)
429 if (fout!=NULL)
442 if (fwrite(buf,err,1,fout)!=1)
450 if (fout)
451 fclose(fout);
484 FILE* fout local
[all...]
/haiku-buildtools/binutils/bfd/
H A Dvms-misc.c490 const char *fout;
493 fout = strrchr (filename, ']');
494 if (fout == NULL)
495 fout = strchr (filename, ':');
496 if (fout != NULL)
497 fout++;
499 fout = filename;
502 fptr = strrchr (fout, '/');
504 fout = fptr + 1;
506 fname = strdup (fout);
488 const char *fout; local
[all...]
/haiku-buildtools/legacy/gcc/libio/tests/
H A DtFile.cc375 cout << "\nMaking filebuf streams fout and fin...";
382 ostream fout(&foutbuf);
383 assert(fout.good());
384 assert(fout.is_open());
385 assert(fout.writable());
386 assert(!fout.readable());
387 fout << "This file has one line testing output streams.\n";
389 fout.close();
390 assert(!fout.is_open());
H A DtFile.exp43 Making filebuf streams fout and fin...contents of file:

Completed in 139 milliseconds