Searched defs:outf (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioLib.cc77 AudioFile* outf; local
81 outf = new AudioFile(path, (FileAccess)WriteOnly);
82 if (outf == 0)
86 if ((err = outf->SetHeader(hdr)) || (err = outf->Create())) {
87 delete outf;
92 err = AudioCopy(input, outf);
95 delete outf;
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dcurses.c75 FILE *outf = stderr; /* debug output file */ variable
/illumos-gate/usr/src/cmd/refer/
H A Dinv2.c24 newkeys(FILE *outf, FILE *inf, FILE *recf, int nhash, FILE *fd, int *iflong) argument
27 * reads key lines from inf; hashes and writes on outf;
28 * writes orig key on recf, records pointer on outf too.
29 * format of outf is : hash code space record pointer
71 fprintf(outf, "%04d %06ld\n", hash(keyv[i])%nhash, lp);
88 fprintf(outf, "%04d %06ld\n",
/illumos-gate/usr/src/cmd/tcopy/
H A Dtcopy.c59 char *inf, *outf; variable
79 outf = argv[2];
87 if ((outp = open(outf, O_WRONLY, 0666)) < 0) {
88 (void) fprintf(stderr, "Can't open %s\n", outf);
/illumos-gate/usr/src/ucblib/libcurses/
H A Dcurses.c46 FILE *outf; /* debug output file */ variable
/illumos-gate/usr/src/cmd/vi/misc/
H A Dctags.c142 *outf; /* ioptr for tags file */ variable
276 outf = fopen(outfile, aflag ? "a" : "w");
277 if (outf == NULL) {
282 (void) fclose(outf);
1042 (void) fprintf(outf, "%s\t%s\t%c^",
1046 (void) fprintf(outf, "\\\\");
1048 (void) fprintf(outf, "\\%c", searchar);
1050 (void) putc(*sp, outf);
1051 (void) fprintf(outf, "%c\n", searchar);
1065 (void) fprintf(outf, "
[all...]

Completed in 77 milliseconds