/src/sys/dev/pci/ |
tdvfbvar.h | 43 int fout; member in struct:tdvfb_dac_timing
|
tdvfb.c | 679 int fout; local in function:tdvfb_gendac_calc_pll 693 * m+2 2^n2 * fOUT 708 fout = (TDV_GENDAC_REFFREQ * (m + 2)) / ((1 << n2) * (n1 + 2)); 709 if ((abs(fout - freq) < best_error) && (m > 0)) { 712 best_error = abs(fout - freq); 718 fout = (TDV_GENDAC_REFFREQ * (best_m + 2)) / ((1 << n2) * (best_n1 + 2)); 721 timing.fout = fout; 724 aprint_normal("tdvfb_gendac_calc_pll ret: m %d, n %d, fout %d kHz\n", 725 timing.m, timing.n, timing.fout); [all...] |
voodoofb.c | 1568 int vidpll, fout; local in function:voodoofb_set_videomode 1584 vidpll = voodoofb_calc_pll(vm->dot_clock, &fout, 0); 1590 printf("pll: %08x %d\n", vidpll, fout);
|
/src/usr.bin/mail/ |
names.c | 253 FILE *fout, *fin; local in function:outof 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...] |
lex.c | 475 FILE *fout; local in function:setup_piping 483 fout = NULL; 491 if ((fout = Popen(cp, "we")) == NULL) { 504 if ((fout = Fopen(cp, mode)) == NULL) { 517 if ((fout = Popen(pager, "we")) == NULL) { 523 if (fout) { 528 if (dup2(fileno(fout), STDOUT_FILENO) == -1)
|
/src/usr.bin/rpcgen/ |
rpc_util.c | 72 FILE *fout; /* file pointer of current output */ variable in typeref:typename:FILE * 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/common/dist/zlib/contrib/minizip/ |
miniunz.c | 312 FILE *fout=NULL; local in function:do_extract_currentfile 414 fout=FOPEN_FUNC(write_filename,"wb"); 416 if ((fout==NULL) && ((*popt_extract_without_path)==0) && 423 fout=FOPEN_FUNC(write_filename,"wb"); 426 if (fout==NULL) 432 if (fout!=NULL) 445 if (fwrite(buf,(unsigned)err,1,fout)!=1) 453 if (fout) 454 fclose(fout);
|
/src/usr.bin/gzip/ |
unlz.c | 281 FILE *fin, *fout; member in struct:lz_decoder 298 if (!tflag && fwrite(lz->obuf + lz->spos, 1, size, lz->fout) != size) 315 if (lz->fout) 316 fclose(lz->fout); 329 lz->fout = fdopen(dup(fdout), "w"); 330 if (lz->fout == NULL) 580 rv = ftello(lz.fout); 612 unlz(int fin, int fout, char *pre, size_t prelen, off_t *bytes_in) 641 return lz_decode(fin, fout, dict_size, bytes_in);
|
/src/usr.bin/ftp/ |
ftp.c | 931 FILE *volatile fout; local in function:recvrequest 950 fout = NULL; 1049 fout = stdout; 1054 fout = popen(local + 1, "w"); 1055 if (fout == NULL) { 1063 fout = fopen(local, lmode); 1064 if (fout == NULL) { 1071 if (fstat(fileno(fout), &st) != -1 && !S_ISREG(st.st_mode)) { 1091 lseek(fileno(fout), restart_point, SEEK_SET) < 0) { 1095 c = copy_bytes(fileno(din), fileno(fout), buf, bufsize [all...] |
fetch.c | 1418 FILE *volatile fout; local in function:fetch_url 1429 fout = NULL; 1654 fout = stdout; 1657 fout = popen(savefile + 1, "w"); 1658 if (fout == NULL) { 1665 if (fout == NULL) { 1685 fout = fopen(savefile, "a"); 1687 fout = fopen(savefile, "w"); 1688 if (fout == NULL) { 1787 if (maxwrite(xferbuf, sizeof(char), flen, fout) [all...] |
/src/libexec/ftpd/ |
ftpd.c | 1840 FILE *fout, *din; local in function:store 1858 fout = fopen(name, fmode); 1861 if (fout == NULL) { 1873 if ((c=getc(fout)) == EOF) { 1886 if (fseek(fout, 0L, SEEK_CUR) < 0) { 1891 } else if (lseek(fileno(fout), restart_point, SEEK_SET) < 0) { 1901 if (receive_data(din, fout) == 0) { 1914 (*closefunc)(fout);
|