HomeSort by: relevance | last modified time | path
    Searched defs:fout (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/external/gpl2/xcvs/dist/src/
create_adm.c 38 FILE *fout; local
95 fout = CVS_FOPEN (tmp, "w+");
96 if (fout == NULL)
131 if (fprintf (fout, "%s\n", cp) < 0)
138 if (fclose (fout) == EOF)
151 fout = CVS_FOPEN (tmp, "w+");
152 if (fout == NULL)
159 if (fclose (fout) == EOF)
root.c 146 FILE *fout; local
161 fout = xfopen (tmp, "w+");
162 if (fprintf (fout, "%s\n", rootdir) < 0)
164 if (fclose (fout) == EOF)
  /src/external/mit/libcbor/dist/oss-fuzz/
cbor_load_fuzzer.cc 14 FILE* fout; member in struct:State
16 State() : fout(fopen("/dev/null", "r")) {
27 cbor_describe(item, kState.fout);
  /src/external/lgpl3/mpfr/dist/tests/
tout_str.c 29 FILE *fout; variable
40 fprintf (fout, "%1.19e base %d %s:\n ", d, base, mpfr_print_rnd_mode (rnd));
41 mpfr_out_str (fout, base, (base == 2) ? prec : 0, x, rnd);
42 fputc ('\n', fout);
55 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
56 fputc ('\n', fout);
65 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
66 fputc ('\n', fout);
75 n = mpfr_out_str (fout, 10, 0, x, MPFR_RNDN);
76 fputc ('\n', fout);
    [all...]
tfprintf.c 74 check (FILE *fout, const char *fmt, mpfr_ptr x)
76 if (mpfr_fprintf (fout, fmt, x) == -1)
78 mpfr_printf ("Error in mpfr_fprintf(fout, \"%s\", %Re)\n",
82 fputc ('\n', fout);
86 check_vfprintf (FILE *fout, const char *fmt, ...)
91 if (mpfr_vfprintf (fout, fmt, ap) == -1)
93 mpfr_printf ("Error in mpfr_vfprintf(fout, \"%s\", ...)\n", fmt);
100 fputc ('\n', fout);
104 check_special (FILE *fout)
111 check (fout, "%Ra", x)
411 FILE *fout; local
    [all...]
  /src/external/bsd/zstd/dist/examples/
streaming_decompression.c 22 FILE* const fout = stdout; local
58 fwrite_orDie(buffOut, output.pos, fout);
79 fclose_orDie(fout);
streaming_compression.c 26 FILE* const fout = fopen_orDie(outName, "wb"); local
80 fwrite_orDie(buffOut, output.pos, fout);
96 fclose_orDie(fout);
multiple_streaming_compression.c 61 FILE* const fout = fopen_orDie(outName, "wb"); local
84 fwrite_orDie(ress.buffOut, output.pos, fout);
91 fclose_orDie(fout);
streaming_compression_thread_pool.c 37 FILE* const fout = fopen_orDie(args->outName, "wb"); local
90 fwrite_orDie(buffOut, output.pos, fout);
108 fclose_orDie(fout);
  /src/external/bsd/pkg_install/dist/lib/
var.c 192 FILE *fout; local
233 if ((fout=fdopen(fd, "w")) == NULL) {
249 fprintf(fout, "%.*s", (int)len, line);
252 var_print(fout, variable, value);
261 var_print(fout, variable, value);
263 if (fclose(fout) < 0) {
  /src/external/bsd/zstd/dist/contrib/seekable_format/examples/
seekable_decompression.c 90 FILE* const fout = stdout; local
111 fwrite_orDie(buffOut, result, fout);
117 fclose_orDie(fout);
seekable_compression.c 66 FILE* const fout = fopen_orDie(outName, "wb"); local
85 fwrite_orDie(buffOut, output.pos, fout);
93 fwrite_orDie(buffOut, output.pos, fout);
98 fclose_orDie(fout);
seekable_decompression_mem.c 92 FILE* const fout = stdout; local
116 fwrite_orDie(buffOut, result, fout);
122 fclose_orDie(fout);
parallel_compression.c 128 FILE* const fout = fopen_orDie(outName, "wb"); local
162 fwrite_orDie(jobs[i].dst, jobs[i].dstSize, fout);
173 fwrite_orDie(seekTableBuff, out.pos, fout);
176 fwrite_orDie(seekTableBuff, out.pos, fout);
181 fclose_orDie(fout);
  /src/sys/dev/pci/
tdvfbvar.h 43 int fout; member in struct:tdvfb_dac_timing
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
asn1_gen.c 54 FILE *f, *fout; local
70 fout = fopen(fnout, "w");
71 if (fout == NULL)
124 if (fwrite(p + sizeof(p) - sz , sz, 1, fout) != 1)
137 if (fwrite(pdata, datalen, 1, fout) != 1)
146 fclose(fout);
  /src/usr.bin/mail/
names.c 253 FILE *fout, *fin; local
292 (fout = Fdopen(fd, "aef")) == NULL) {
304 (void)Fclose(fout);
307 (void)fprintf(fout, "From %s %s", myname, date);
309 (void)puthead(hp, fout, GTO|GSUBJECT|GCC|GMISC|GMIME|GNL);
311 (void)puthead(hp, fout, GTO|GSUBJECT|GCC|GMISC|GNL);
314 (void)putc(c, fout);
316 (void)putc('\n', fout);
317 (void)fflush(fout);
318 if (ferror(fout)) {
    [all...]
  /src/usr.bin/rpcgen/
rpc_util.c 72 FILE *fout; /* file pointer of current output */ variable
180 f_print(fout, "enum ");
182 f_print(fout, "struct ");
186 f_print(fout, "bool_t ");
189 f_print(fout, "char *");
191 f_print(fout, "%s ", follow ? fixtype(type) : type);
246 f_print(fout, "%s_%s_svc", locase(pname), vnum);
252 f_print(fout, "%s_%s", locase(pname), vnum);
  /src/external/gpl2/rcs/dist/src/
rcsgen.c 467 register FILE *fout; local
472 if (!(fout = frewrite)) {
475 fout = fopenSafer(makedirtemp(0), FOPEN_WB);
479 fout = fdopen(fo, FOPEN_WB);
482 if (!(frewrite = fout))
490 aputc_(*Khead, fout)
491 aprintf(fout, "%s\t%s;\n", Khead + 1, Head?Head->num:"");
493 aprintf(fout, "%s\t%s;\n", Kbranch, Dbranch);
495 aputs(Kaccess, fout);
498 aprintf(fout, "\n\t%s", curaccess->login)
639 register FILE *fout; local
    [all...]
rcssyn.c 558 * Copy a clean version of the command to fout (if nonnull).
566 register FILE *fout; local
573 fout = foutfile;
586 if (fout)
587 aprintf(fout, "%c%c", SDELIM, c);
649 if (fout) {
650 aprintf(fout, "%s\n", buf);
  /src/external/gpl3/binutils/dist/bfd/
vms-misc.c 504 const char *fout;
507 fout = strrchr (filename, ']');
508 if (fout == NULL)
509 fout = strchr (filename, ':');
510 if (fout != NULL)
511 fout++;
513 fout = filename;
516 fptr = strrchr (fout, '/');
518 fout = fptr + 1;
520 fname = strdup (fout);
502 const char *fout; local
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
vms-misc.c 504 const char *fout;
507 fout = strrchr (filename, ']');
508 if (fout == NULL)
509 fout = strchr (filename, ':');
510 if (fout != NULL)
511 fout++;
513 fout = filename;
516 fptr = strrchr (fout, '/');
518 fout = fptr + 1;
520 fname = strdup (fout);
502 const char *fout; local
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
vms-misc.c 504 const char *fout;
507 fout = strrchr (filename, ']');
508 if (fout == NULL)
509 fout = strchr (filename, ':');
510 if (fout != NULL)
511 fout++;
513 fout = filename;
516 fptr = strrchr (fout, '/');
518 fout = fptr + 1;
520 fname = strdup (fout);
502 const char *fout; local
    [all...]
  /src/external/gpl3/gdb/dist/bfd/
vms-misc.c 504 const char *fout;
507 fout = strrchr (filename, ']');
508 if (fout == NULL)
509 fout = strchr (filename, ':');
510 if (fout != NULL)
511 fout++;
513 fout = filename;
516 fptr = strrchr (fout, '/');
518 fout = fptr + 1;
520 fname = strdup (fout);
502 const char *fout; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/
fipsinstall.c 299 BIO *module_bio = NULL, *mem_bio = NULL, *fout = NULL; local
503 fout =
506 if (fout == NULL) {
510 if (!write_config_fips_section(fout, section_name,
530 BIO_free(fout);

Completed in 41 milliseconds

1 2