Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 1734) sorted by relevance

12345678910>>...70

/mirbsd/src/usr.sbin/pppd/
Dfsm.c76 #define PROTO_NAME(f) ((f)->callbacks->proto_name) argument
87 fsm_init(f) in fsm_init() argument
88 fsm *f; in fsm_init()
90 f->state = INITIAL;
91 f->flags = 0;
92 f->id = 0; /* XXX Start with random id? */
93 f->timeouttime = DEFTIMEOUT;
94 f->maxconfreqtransmits = DEFMAXCONFREQS;
95 f->maxtermtransmits = DEFMAXTERMREQS;
96 f->maxnakloops = DEFMAXNAKLOOPS;
[all …]
/mirbsd/src/gnu/usr.bin/perl/
Dperlsdio.h26 #define PerlIO_isutf8(f) 0 argument
30 #define PerlIO_vprintf(f,fmt,a) PerlSIO_vprintf(f,fmt,a) argument
31 #define PerlIO_write(f,buf,count) PerlSIO_fwrite(buf,1,count,f) argument
32 #define PerlIO_unread(f,buf,count) (-1) argument
36 #define PerlIO_close(f) PerlSIO_fclose(f) argument
37 #define PerlIO_puts(f,s) PerlSIO_fputs(f,s) argument
38 #define PerlIO_putc(f,c) PerlSIO_fputc(f,c) argument
44 # define PerlIO_ungetc(f,c) ((c) == EOF ? EOF : \ argument
45 ((*(f) && !((*(f))->_flag & _IONBF) && \
46 ((*(f))->_ptr > (*(f))->_base)) ? \
[all …]
Dperlsfio.h31 #define PerlIO_isutf8(f) 0 argument
35 #define PerlIO_vprintf(f,fmt,a) sfvprintf(f,fmt,a) argument
36 #define PerlIO_read(f,buf,count) sfread(f,buf,count) argument
37 #define PerlIO_write(f,buf,count) sfwrite(f,buf,count) argument
40 #define PerlIO_reopen(path,mode,f) sfopen(f,path,mode) argument
41 #define PerlIO_close(f) sfclose(f) argument
42 #define PerlIO_puts(f,s) sfputr(f,s,-1) argument
43 #define PerlIO_putc(f,c) sfputc(f,c) argument
44 #define PerlIO_ungetc(f,c) sfungetc(f,c) argument
46 #define PerlIO_getc(f) sfgetc(f) argument
[all …]
Dfakesdio.h75 #define fclose(f) PerlIO_close(f) argument
76 #define fflush(f) PerlIO_flush(f) argument
78 #define vfprintf(f,fmt,a) PerlIO_vprintf(f,fmt,a) argument
79 #define fgetc(f) PerlIO_getc(f) argument
80 #define fputc(c,f) PerlIO_putc(f,c) argument
81 #define fputs(s,f) PerlIO_puts(f,s) argument
82 #define getc(f) PerlIO_getc(f) argument
83 #define getc_unlocked(f) PerlIO_getc(f) argument
84 #define putc(c,f) PerlIO_putc(f,c) argument
85 #define putc_unlocked(c,f) PerlIO_putc(c,f) argument
[all …]
Dperlio.c67 #define Perl_PerlIO_or_Base(f, callback, base, failure, args) \ argument
68 if (PerlIOValid(f)) { \
69 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
80 #define Perl_PerlIO_or_fail(f, callback, failure, args) \ argument
81 if (PerlIOValid(f)) { \
82 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
92 #define Perl_PerlIO_or_Base_void(f, callback, base, args) \ argument
93 if (PerlIOValid(f)) { \
94 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
104 #define Perl_PerlIO_or_fail_void(f, callback, args) \ argument
[all …]
Dperliol.h21 IV (*Pushed) (pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab);
22 IV (*Popped) (pTHX_ PerlIO *f);
28 IV (*Binmode)(pTHX_ PerlIO *f);
29 SV *(*Getarg) (pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags);
30 IV (*Fileno) (pTHX_ PerlIO *f);
31 PerlIO *(*Dup) (pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags);
33 SSize_t(*Read) (pTHX_ PerlIO *f, void *vbuf, Size_t count);
34 SSize_t(*Unread) (pTHX_ PerlIO *f, const void *vbuf, Size_t count);
35 SSize_t(*Write) (pTHX_ PerlIO *f, const void *vbuf, Size_t count);
36 IV (*Seek) (pTHX_ PerlIO *f, Off_t offset, int whence);
[all …]
Dutil.h12 # define PERL_FILE_IS_ABSOLUTE(f) \ argument
13 (*(f) == '/' \
14 || (strchr(f,':') \
15 || ((*(f) == '[' || *(f) == '<') \
16 && (isALNUM((f)[1]) || strchr("$-_]>",(f)[1])))))
20 # define PERL_FILE_IS_ABSOLUTE(f) \ argument
21 (*(f) == '/' || *(f) == '\\' /* UNC/rooted path */ \
22 || ((f)[0] && (f)[1] == ':')) /* drive name */
25 # define PERL_FILE_IS_ABSOLUTE(f) \ argument
26 (((f)[0] && (f)[1] == ':') /* drive name */ \
[all …]
Dnostdio.h81 #define fclose(f) _CANNOT _fclose_ argument
82 #define fflush(f) _CANNOT _fflush_ argument
84 #define freopen(p,m,f) _CANNOT _freopen_ argument
85 #define setbuf(f,b) _CANNOT _setbuf_ argument
86 #define setvbuf(f,b,x,s) _CANNOT _setvbuf_ argument
88 #define vfprintf(f,fmt,a) _CANNOT _vfprintf_ argument
89 #define fgetc(f) _CANNOT _fgetc_ argument
90 #define fgets(s,n,f) _CANNOT _fgets_ argument
91 #define fputc(c,f) _CANNOT _fputc_ argument
92 #define fputs(s,f) _CANNOT _fputs_ argument
[all …]
/mirbsd/src/gnu/usr.bin/perl/NetWare/
Dnwstdio.h28 #define PerlIO_putc(f,c) (*PL_StdIO->pPutc)(PL_StdIO, (f),(c)) argument
29 #define PerlIO_fileno(f) (*PL_StdIO->pFileno)(PL_StdIO, (f)) argument
30 #define PerlIO_close(f) (*PL_StdIO->pClose)(PL_StdIO, (f)) argument
33 #define PerlIO_vprintf(f,fmt,a) (*PL_StdIO->pVprintf)(PL_StdIO, (f),(fmt),a) argument
34 #define PerlIO_flush(f) (*PL_StdIO->pFlush)(PL_StdIO, (f)) argument
37 #define PerlIO_clearerr(f) (*PL_StdIO->pClearerr)(PL_StdIO, (f)) argument
38 #define PerlIO_fdopen(f,s) (*PL_StdIO->pFdopen)(PL_StdIO, (f),(s)) argument
39 #define PerlIO_getc(f) (*PL_StdIO->pGetc)(PL_StdIO, (f)) argument
40 #define PerlIO_ungetc(f,c) (*PL_StdIO->pUngetc)(PL_StdIO, (c),(f)) argument
41 #define PerlIO_tell(f) (*PL_StdIO->pTell)(PL_StdIO, (f)) argument
[all …]
/mirbsd/src/usr.bin/grep/
Dfile.c51 FILE *f; member
58 gzfgetln(gzFile f, size_t *len) in gzfgetln() argument
64 c = gzgetc(f); in gzfgetln()
69 if (gzeof(f)) in gzfgetln()
72 gzerrstr = gzerror(f, &gzerr); in gzfgetln()
87 if (gzeof(f) && n == 0) in gzfgetln()
97 file_t *f; in grep_fdopen() local
104 f = grep_malloc(sizeof *f); in grep_fdopen()
108 f->type = FILE_GZIP; in grep_fdopen()
109 f->noseek = lseek(fd, 0L, SEEK_SET) == -1; in grep_fdopen()
[all …]
/mirbsd/src/gnu/usr.bin/perl/t/io/
Dopen.t29 ok( open(my $f,"+>afile"), 'open(my $f, "+>...")' );
31 binmode $f;
33 ok( (print $f "SomeData\n"), ' we can print to it');
34 is( tell($f), 9, ' tell()' );
35 ok( seek($f,0,0), ' seek set' );
37 $b = <$f>;
39 ok( -f $f, ' still a file' );
42 like( $@, qr/<\$f> line 1/, ' die message correct' );
44 ok( close($f), ' close()' );
49 ok( open(my $f,'>', 'afile'), "open(my \$f, '>', 'afile')" );
[all …]
/mirbsd/src/gnu/usr.bin/binutils/opcodes/
Dia64-opc-f.c25 #define f IA64_TYPE_F, 1 macro
101 {"fmin.s0", f, OpXbX6Sf (0, 0, 0x14, 0), {F1, F2, F3}, EMPTY},
102 {"fmin", f, OpXbX6Sf (0, 0, 0x14, 0), {F1, F2, F3}, PSEUDO, 0, NULL},
103 {"fmin.s1", f, OpXbX6Sf (0, 0, 0x14, 1), {F1, F2, F3}, EMPTY},
104 {"fmin.s2", f, OpXbX6Sf (0, 0, 0x14, 2), {F1, F2, F3}, EMPTY},
105 {"fmin.s3", f, OpXbX6Sf (0, 0, 0x14, 3), {F1, F2, F3}, EMPTY},
106 {"fmax.s0", f, OpXbX6Sf (0, 0, 0x15, 0), {F1, F2, F3}, EMPTY},
107 {"fmax", f, OpXbX6Sf (0, 0, 0x15, 0), {F1, F2, F3}, PSEUDO, 0, NULL},
108 {"fmax.s1", f, OpXbX6Sf (0, 0, 0x15, 1), {F1, F2, F3}, EMPTY},
109 {"fmax.s2", f, OpXbX6Sf (0, 0, 0x15, 2), {F1, F2, F3}, EMPTY},
[all …]
/mirbsd/src/gnu/usr.bin/binutils/cpu/
Dsh64-media.cpu71 (dshmf f-op "Opcode" () 31 6)
72 (dshmf f-ext "Extension opcode" () 19 4)
73 (dshmf f-rsvd "Reserved" (RESERVED) 3 4)
75 (dshmf f-left "Left register" () 25 6)
76 (dshmf f-right "Right register" () 15 6)
77 (dshmf f-dest "Destination register" () 9 6)
80 (name f-left-right)
84 (subfields f-left f-right)
86 (set (ifield f-left)
87 (and (ifield f-left-right) 63))
[all …]
Diq2000m.cpu49 (+ OP_BGTZ rs (f-rt 0) offset)
57 (+ OP_BGTZL rs (f-rt 0) offset)
65 (+ OP_BLEZ rs (f-rt 0) offset)
72 (+ OP_BLEZL rs (f-rt 0) offset)
81 (+ OP_SPECIAL rs rt rd (f-10 0) mask FUNC_MRGB)
100 (+ OP_SPECIAL rt rd-rs (f-10 0) mask FUNC_MRGB)
126 (+ OP_REGIMM rs (f-rt 6) offset)
132 (+ OP_COP0 (f-rs 8) (f-rt 0) offset)
138 (+ OP_COP0 (f-rs 8) (f-rt 2) offset)
144 (+ OP_COP3 (f-rs 8) (f-rt 0) offset)
[all …]
/mirbsd/src/gnu/usr.bin/perl/ext/PerlIO/via/
Dvia.xs67 PerlIOVia_method(pTHX_ PerlIO * f, char *method, CV ** save, int flags, in PerlIOVia_method() argument
70 PerlIOVia *s = PerlIOSelf(f, PerlIOVia); in PerlIOVia_method()
88 if (*PerlIONext(f)) { in PerlIOVia_method()
95 IoIFP(s->io) = PerlIONext(f); in PerlIOVia_method()
96 IoOFP(s->io) = PerlIONext(f); in PerlIOVia_method()
121 PerlIOVia_pushed(pTHX_ PerlIO * f, const char *mode, SV * arg, in PerlIOVia_pushed() argument
124 IV code = PerlIOBase_pushed(aTHX_ f, mode, Nullsv, tab); in PerlIOVia_pushed()
126 PerlIOVia *s = PerlIOSelf(f, PerlIOVia); in PerlIOVia_pushed()
152 mode = PerlIO_modestr(f,lmode); in PerlIOVia_pushed()
155 result = PerlIOVia_method(aTHX_ f, MYMethod(PUSHED), G_SCALAR, in PerlIOVia_pushed()
[all …]
/mirbsd/src/usr.sbin/syslogd/
Dsyslogd.c171 #define REPEATTIME(f) ((f)->f_time + repeatinterval[(f)->f_repeatcount]) argument
172 #define BACKOFF(f) { if (++(f)->f_repeatcount > MAXREPEAT) \ argument
173 (f)->f_repeatcount = MAXREPEAT; \
673 struct filed *f; in logmsg() local
721 f = &consfile; in logmsg()
722 f->f_file = priv_open_tty(ctty); in logmsg()
724 if (f->f_file >= 0) { in logmsg()
725 fprintlog(f, flags, msg); in logmsg()
726 (void)close(f->f_file); in logmsg()
727 f->f_file = -1; in logmsg()
[all …]
/mirbsd/src/usr.bin/awk/
Db.c128 fa *f; in mkdfa() local
138 if ((f = (fa *) calloc(1, sizeof(fa) + poscnt*sizeof(rrow))) == NULL) in mkdfa()
140 f->accept = poscnt-1; /* penter has computed number of positions in re */ in mkdfa()
141 cfoll(f, p1); /* set up follow sets */ in mkdfa()
143 if ((f->posns[0] = (int *) calloc(*(f->re[0].lfollow), sizeof(int))) == NULL) in mkdfa()
145 if ((f->posns[1] = (int *) calloc(1, sizeof(int))) == NULL) in mkdfa()
147 *f->posns[1] = 0; in mkdfa()
148 f->initstat = makeinit(f, anchor); in mkdfa()
149 f->anchor = anchor; in mkdfa()
150 f->restr = (uschar *) tostring(s); in mkdfa()
[all …]
/mirbsd/src/usr.sbin/wsfontload/
Dwsfontload.c94 struct wsdisplay_font f; in main() local
100 f.index = -1; in main()
101 f.fontwidth = DEFWIDTH; in main()
102 f.fontheight = DEFHEIGHT; in main()
103 f.firstchar = 0; in main()
104 f.numchars = 256; in main()
105 f.stride = 0; in main()
106 f.encoding = DEFENC; in main()
107 f.name[0] = 0; in main()
108 f.bitorder = DEFBITORDER; in main()
[all …]
/mirbsd/src/lib/libssl/src/crypto/err/
Derr.h138 #define SYSerr(f,r) ERR_PUT_error(ERR_LIB_SYS,(f),(r),__FILE__,__LINE__) argument
139 #define BNerr(f,r) ERR_PUT_error(ERR_LIB_BN,(f),(r),__FILE__,__LINE__) argument
140 #define RSAerr(f,r) ERR_PUT_error(ERR_LIB_RSA,(f),(r),__FILE__,__LINE__) argument
141 #define DHerr(f,r) ERR_PUT_error(ERR_LIB_DH,(f),(r),__FILE__,__LINE__) argument
142 #define EVPerr(f,r) ERR_PUT_error(ERR_LIB_EVP,(f),(r),__FILE__,__LINE__) argument
143 #define BUFerr(f,r) ERR_PUT_error(ERR_LIB_BUF,(f),(r),__FILE__,__LINE__) argument
144 #define OBJerr(f,r) ERR_PUT_error(ERR_LIB_OBJ,(f),(r),__FILE__,__LINE__) argument
145 #define PEMerr(f,r) ERR_PUT_error(ERR_LIB_PEM,(f),(r),__FILE__,__LINE__) argument
146 #define DSAerr(f,r) ERR_PUT_error(ERR_LIB_DSA,(f),(r),__FILE__,__LINE__) argument
147 #define X509err(f,r) ERR_PUT_error(ERR_LIB_X509,(f),(r),__FILE__,__LINE__) argument
[all …]
/mirbsd/src/gnu/usr.bin/perl/ext/Devel/PPPort/parts/
Dapicheck.pl33 my @f = parse_embed(qw( parts/embed.fnc parts/apidoc.fnc ));
178 my $f;
179 for $f (@f) {
180 $ignore{$f->{name}} and next;
181 $f->{flags}{A} or next; # only public API members
183 $ignore{$f->{name}} = 1; # ignore duplicates
185 my $Perl_ = $f->{flags}{p} ? 'Perl_' : '';
194 for $ca (@{$f->{args}}) {
216 unless ($f->{flags}{n} || $f->{flags}{'m'}) {
221 if ($stack{$f->{name}}) {
[all …]
/mirbsd/src/lib/libc/stdio/
Dtempnam.c50 char *f, *name; in tempnam() local
58 if (issetugid() == 0 && (f = getenv("TMPDIR"))) { in tempnam()
59 (void)snprintf(name, MAXPATHLEN, "%s%s%sXXXXXXXXXX", f, in tempnam()
60 *(f + strlen(f) - (*f == '\0' ? 0 : 1)) == '/'? "": "/", in tempnam()
62 if ((f = _mktemp(name))) in tempnam()
63 return(f); in tempnam()
66 if ((f = (char *)dir)) { in tempnam()
67 (void)snprintf(name, MAXPATHLEN, "%s%s%sXXXXXXXXXX", f, in tempnam()
68 *(f + strlen(f) - (*f == '\0' ? 0 : 1)) == '/'? "": "/", in tempnam()
70 if ((f = _mktemp(name))) in tempnam()
[all …]
/mirbsd/src/gnu/usr.bin/perl/ext/PerlIO/scalar/
Dscalar.xs16 PerlIOScalar_pushed(pTHX_ PerlIO * f, const char *mode, SV * arg, in PerlIOScalar_pushed() argument
20 PerlIOScalar *s = PerlIOSelf(f, PerlIOScalar); in PerlIOScalar_pushed()
41 code = PerlIOBase_pushed(aTHX_ f, mode, Nullsv, tab); in PerlIOScalar_pushed()
42 if (!SvOK(s->var) || (PerlIOBase(f)->flags) & PERLIO_F_TRUNCATE) in PerlIOScalar_pushed()
44 if ((PerlIOBase(f)->flags) & PERLIO_F_APPEND) in PerlIOScalar_pushed()
52 PerlIOScalar_popped(pTHX_ PerlIO * f) in PerlIOScalar_popped() argument
54 PerlIOScalar *s = PerlIOSelf(f, PerlIOScalar); in PerlIOScalar_popped()
63 PerlIOScalar_close(pTHX_ PerlIO * f) in PerlIOScalar_close() argument
65 IV code = PerlIOBase_close(aTHX_ f); in PerlIOScalar_close()
66 PerlIOBase(f)->flags &= ~(PERLIO_F_RDBUF | PERLIO_F_WRBUF); in PerlIOScalar_close()
[all …]
/mirbsd/src/gnu/usr.bin/binutils/bfd/
Dxsym.c265 bfd_sym_display_table_summary (FILE *f, in bfd_sym_display_table_summary() argument
269 fprintf (f, "%-6s %13ld %13ld %13ld\n", in bfd_sym_display_table_summary()
277 bfd_sym_display_header (FILE *f, bfd_sym_header_block *dshb) in bfd_sym_display_header() argument
279 fprintf (f, " Version: %.*s\n", dshb->dshb_id[0], dshb->dshb_id + 1); in bfd_sym_display_header()
280 fprintf (f, " Page Size: 0x%x\n", dshb->dshb_page_size); in bfd_sym_display_header()
281 fprintf (f, " Hash Page: %lu\n", dshb->dshb_hash_page); in bfd_sym_display_header()
282 fprintf (f, " Root MTE: %lu\n", dshb->dshb_root_mte); in bfd_sym_display_header()
283 fprintf (f, " Modification Date: "); in bfd_sym_display_header()
284 fprintf (f, "[unimplemented]"); in bfd_sym_display_header()
285 fprintf (f, " (0x%lx)\n", dshb->dshb_mod_date); in bfd_sym_display_header()
[all …]
/mirbsd/src/gnu/usr.bin/perl/wince/
Dwin32io.c37 PerlIOWin32_popped(pTHX_ PerlIO *f) in PerlIOWin32_popped() argument
39 PerlIOWin32 *s = PerlIOSelf(f,PerlIOWin32); in PerlIOWin32_popped()
42 *f = PerlIOBase(f)->next; in PerlIOWin32_popped()
50 PerlIOWin32_fileno(pTHX_ PerlIO *f) in PerlIOWin32_fileno() argument
52 return PerlIOSelf(f,PerlIOWin32)->fd; in PerlIOWin32_fileno()
56 PerlIOWin32_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) in PerlIOWin32_pushed() argument
58 IV code = PerlIOBase_pushed(aTHX_ f,mode,arg,tab); in PerlIOWin32_pushed()
59 if (*PerlIONext(f)) in PerlIOWin32_pushed()
61 PerlIOWin32 *s = PerlIOSelf(f,PerlIOWin32); in PerlIOWin32_pushed()
62 s->fd = PerlIO_fileno(PerlIONext(f)); in PerlIOWin32_pushed()
[all …]
/mirbsd/src/gnu/usr.bin/perl/win32/
Dwin32io.c36 PerlIOWin32_popped(pTHX_ PerlIO *f) in PerlIOWin32_popped() argument
38 PerlIOWin32 *s = PerlIOSelf(f,PerlIOWin32); in PerlIOWin32_popped()
41 *f = PerlIOBase(f)->next; in PerlIOWin32_popped()
49 PerlIOWin32_fileno(pTHX_ PerlIO *f) in PerlIOWin32_fileno() argument
51 return PerlIOSelf(f,PerlIOWin32)->fd; in PerlIOWin32_fileno()
55 PerlIOWin32_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) in PerlIOWin32_pushed() argument
57 IV code = PerlIOBase_pushed(aTHX_ f,mode,arg,tab); in PerlIOWin32_pushed()
58 if (*PerlIONext(f)) in PerlIOWin32_pushed()
60 PerlIOWin32 *s = PerlIOSelf(f,PerlIOWin32); in PerlIOWin32_pushed()
61 s->fd = PerlIO_fileno(PerlIONext(f)); in PerlIOWin32_pushed()
[all …]

12345678910>>...70