Home
last modified time | relevance | path

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

12345678910>>...227

/openbsd/src/gnu/usr.bin/gcc/gcc/f/
DMake-lang.in39 # $(srcdir) must be set to the gcc/ source directory (not gcc/f/).
68 g77spec.o: $(srcdir)/f/g77spec.c $(SYSTEM_H) $(GCC_H) \
73 $(INCLUDES) $(srcdir)/f/g77spec.c)
83 rm -f g77-cross$(exeext); \
88 F77_OBJS = f/bad.o f/bit.o f/bld.o f/com.o f/data.o f/equiv.o f/expr.o \
89 f/global.o f/implic.o f/info.o f/intrin.o f/lab.o f/lex.o f/malloc.o \
90 f/name.o f/parse.o f/src.o f/st.o f/sta.o f/stb.o f/stc.o \
91 f/std.o f/ste.o f/storag.o f/stp.o f/str.o f/sts.o f/stt.o f/stu.o \
92 f/stv.o f/stw.o f/symbol.o f/target.o f/top.o f/type.o f/where.o
95 f-warn =
[all …]
Dtop.h145 void ffe_file (ffewhereFile wf, FILE *f);
210 #define ffe_set_case_intrin(f) (ffe_case_intrin_ = (f)) argument
211 #define ffe_set_case_match(f) (ffe_case_match_ = (f)) argument
212 #define ffe_set_case_source(f) (ffe_case_source_ = (f)) argument
213 #define ffe_set_case_symbol(f) (ffe_case_symbol_ = (f)) argument
221 #define ffe_set_is_90(f) (ffe_is_90_ = (f)) argument
222 #define ffe_set_is_automatic(f) (ffe_is_automatic_ = (f)) argument
223 #define ffe_set_is_backslash(f) (ffe_is_backslash_ = (f)) argument
224 #define ffe_set_is_debug_kludge(f) (ffe_is_debug_kludge_ = (f)) argument
225 #define ffe_set_is_do_internal_checks(f) (ffe_is_do_internal_checks_ = (f)) argument
[all …]
/openbsd/src/usr.sbin/npppd/npppd/
Dfsm.c81 #define PROTO_NAME(f) ((f)->callbacks->proto_name) argument
99 fsm_init(fsm *f) in fsm_init() argument
101 f->state = INITIAL; in fsm_init()
102 f->flags = 0; in fsm_init()
103 f->id = 0; /* XXX Start with random id? */ in fsm_init()
104 f->timeouttime = DEFTIMEOUT; in fsm_init()
105 f->maxconfreqtransmits = DEFMAXCONFREQS; in fsm_init()
106 f->maxtermtransmits = DEFMAXTERMREQS; in fsm_init()
107 f->maxnakloops = DEFMAXNAKLOOPS; in fsm_init()
108 f->term_reason_len = 0; in fsm_init()
[all …]
/openbsd/src/usr.sbin/pppd/
Dfsm.c68 #define PROTO_NAME(f) ((f)->callbacks->proto_name) argument
79 fsm_init(fsm *f) in fsm_init() argument
81 f->state = INITIAL; in fsm_init()
82 f->flags = 0; in fsm_init()
83 f->id = 0; /* XXX Start with random id? */ in fsm_init()
84 f->timeouttime = DEFTIMEOUT; in fsm_init()
85 f->maxconfreqtransmits = DEFMAXCONFREQS; in fsm_init()
86 f->maxtermtransmits = DEFMAXTERMREQS; in fsm_init()
87 f->maxnakloops = DEFMAXNAKLOOPS; in fsm_init()
88 f->term_reason_len = 0; in fsm_init()
[all …]
/openbsd/src/usr.bin/sndiod/
Dsock.c134 ctlgroup(struct sock *f, struct ctl *c) in ctlgroup() argument
136 if (f->ctlslot->opt == NULL) in ctlgroup()
138 if (strcmp(c->group, f->ctlslot->opt->name) == 0) in ctlgroup()
140 if (strcmp(c->group, f->ctlslot->opt->dev->name) == 0) in ctlgroup()
146 sock_close(struct sock *f) in sock_close() argument
152 for (pf = &sock_list; *pf != f; pf = &(*pf)->next) { in sock_close()
160 *pf = f->next; in sock_close()
163 logx(3, "sock %d: closing", f->fd); in sock_close()
165 if (f->pstate > SOCK_AUTH) in sock_close()
166 sock_sesrefs -= f->sesrefs; in sock_close()
[all …]
Dfile.c206 struct file *f; in file_new() local
214 f = xmalloc(sizeof(struct file)); in file_new()
215 f->max_nfds = nfds; in file_new()
216 f->nfds = 0; in file_new()
217 f->ops = ops; in file_new()
218 f->arg = arg; in file_new()
219 f->name = name; in file_new()
220 f->state = FILE_INIT; in file_new()
221 f->next = file_list; in file_new()
222 file_list = f; in file_new()
[all …]
/openbsd/src/gnu/lib/libreadline/
DMANIFEST8 COPYING f
9 README f
10 MANIFEST f
11 INSTALL f
12 CHANGELOG f
13 CHANGES f
14 USAGE f
15 aclocal.m4 f
16 config.h.in f
17 configure f
[all …]
/openbsd/src/usr.bin/aucat/
Dafile.c220 afile_readhdr(struct afile *f, void *addr, size_t size) in afile_readhdr() argument
222 if (lseek(f->fd, 0, SEEK_SET) == -1) { in afile_readhdr()
223 logx(1, "%s: failed to seek to beginning of file", f->path); in afile_readhdr()
226 if (read(f->fd, addr, size) != size) { in afile_readhdr()
227 logx(1, "%s: failed to read header", f->path); in afile_readhdr()
234 afile_writehdr(struct afile *f, void *addr, size_t size) in afile_writehdr() argument
236 if (lseek(f->fd, 0, SEEK_SET) == -1) { in afile_writehdr()
237 logx(1, "%s: failed to seek back to header", f->path); in afile_writehdr()
240 if (write(f->fd, addr, size) != size) { in afile_writehdr()
241 logx(1, "%s: failed to write header", f->path); in afile_writehdr()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/tsan/tests/unit/
Dtsan_flags_test.cpp21 Flags f; in TEST() local
22 InitializeFlags(&f, 0); in TEST()
23 InitializeFlags(&f, ""); in TEST()
27 Flags f; in TEST() local
29 f.enable_annotations = false; in TEST()
30 InitializeFlags(&f, ""); in TEST()
31 EXPECT_EQ(true, f.enable_annotations); in TEST()
80 void VerifyOptions1(Flags *f) { in VerifyOptions1() argument
81 EXPECT_EQ(f->enable_annotations, 0); in VerifyOptions1()
82 EXPECT_EQ(f->suppress_equal_stacks, 0); in VerifyOptions1()
[all …]
/openbsd/src/regress/lib/libc/orientation/
Dorientation_test.c63 FILE *f; in setup() local
66 if ((f = fopen(filename, "r+")) == NULL) in setup()
68 if ((r = fwide(f, 0)) != 0) in setup()
70 return (f); in setup()
87 f = setup(__LINE__); \
89 if (!((r = fwide(f, 0)) op 0)) \
91 fclose(f); \
96 f = setup_std(std, __LINE__); \
98 if (!((r = fwide(f, 0)) op 0)) \
116 FILE *f; in main() local
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
Dwtr-func-def-1.c19 void f_int1 (int f) in f_int1() argument
24 void f_int2 (f) in f_int2() argument
25 int f; in f_int2()
32 void f_int3 (int f) in f_int3() argument
36 void f3c (int f) { return; } in f_int3()
37 void f3d (f) int f; { return; } in f_int3()
38 void f3e (const char *f, ...) { return; } in f_int3()
42 void f_int4 (int f) in f_int4() argument
46 void f4c (int f) { return; } in f_int4()
47 void f4d (f) int f; { return; } in f_int4()
[all …]
/openbsd/src/gnu/usr.bin/perl/
Dfakesdio.h74 #define fclose(f) PerlIO_close(f) argument
75 #define fflush(f) PerlIO_flush(f) argument
77 #define vfprintf(f,fmt,a) PerlIO_vprintf(f,fmt,a) argument
78 #define fgetc(f) PerlIO_getc(f) argument
79 #define fputc(c,f) PerlIO_putc(f,c) argument
80 #define fputs(s,f) PerlIO_puts(f,s) argument
81 #define getc(f) PerlIO_getc(f) argument
82 #define getc_unlocked(f) PerlIO_getc(f) argument
83 #define putc(c,f) PerlIO_putc(f,c) argument
84 #define putc_unlocked(c,f) PerlIO_putc(c,f) argument
[all …]
Dperlio.c56 #define PerlIO_lockcnt(f) (((PerlIOl*)(void*)(f))->head->flags) argument
59 #define Perl_PerlIO_or_Base(f, callback, base, failure, args) \ argument
60 if (PerlIOValid(f)) { \
61 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
72 #define Perl_PerlIO_or_fail(f, callback, failure, args) \ argument
73 if (PerlIOValid(f)) { \
74 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
84 #define Perl_PerlIO_or_Base_void(f, callback, base, args) \ argument
85 if (PerlIOValid(f)) { \
86 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
[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 …]
/openbsd/src/usr.bin/grep/
Dfile.c52 FILE *f; member
59 gzfgetln(gzFile f, size_t *len) in gzfgetln() argument
65 c = gzgetc(f); in gzfgetln()
70 if (gzeof(f)) in gzfgetln()
73 gzerrstr = gzerror(f, &gzerr); in gzfgetln()
88 if (gzeof(f) && n == 0) in gzfgetln()
98 file_t *f; in grep_fdopen() local
113 f = grep_malloc(sizeof *f); in grep_fdopen()
117 f->type = FILE_GZIP; in grep_fdopen()
118 f->noseek = lseek(fd, 0L, SEEK_SET) == -1; in grep_fdopen()
[all …]
/openbsd/src/regress/usr.bin/ssh/
Dsshcfgparse.sh16 echo "$f" | tr ',' '\n' | grep "^$_expect\$" >/dev/null
25 echo "$f" | tr ',' '\n' | grep "^$_expect\$" >/dev/null
38 f=`${SSH} -GF $OBJ/ssh_config host | awk '/exitonforwardfailure/{print $2}'`
39 test "$f" = "no" || fail "exitonforwardfailure default"
40 f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/exitonforwardfailure/{print $2}'`
41 test "$f" = "yes" || fail "exitonforwardfailure enable"
42 f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o exitonforwardfailure=no h | \
44 test "$f" = "no" || fail "exitonforwardfailure override"
46 f=`${SSH} -GF $OBJ/ssh_config host | awk '/clearallforwardings/{print $2}'`
47 test "$f" = "no" || fail "clearallforwardings default"
[all …]
/openbsd/src/sys/dev/pci/drm/i915/
Di915_sw_fence_work.c9 static void fence_complete(struct dma_fence_work *f) in fence_complete() argument
11 if (f->ops->release) in fence_complete()
12 f->ops->release(f); in fence_complete()
13 dma_fence_signal(&f->dma); in fence_complete()
18 struct dma_fence_work *f = container_of(work, typeof(*f), work); in fence_work() local
20 f->ops->work(f); in fence_work()
22 fence_complete(f); in fence_work()
23 dma_fence_put(&f->dma); in fence_work()
29 struct dma_fence_work *f = container_of(fence, typeof(*f), chain); in fence_notify() local
34 dma_fence_set_error(&f->dma, fence->error); in fence_notify()
[all …]
/openbsd/src/usr.sbin/wsfontload/
Dwsfontload.c78 struct wsdisplay_font f; in main() local
88 memset(&f, 0, sizeof f); in main()
89 f.firstchar = f.numchars = -1; in main()
90 f.encoding = -1; in main()
99 f.fontwidth = strtonum(optarg, 1, INT_MAX, &errstr); in main()
104 f.fontheight = strtonum(optarg, 1, INT_MAX, &errstr); in main()
110 f.encoding = getencoding(optarg); in main()
116 strlcpy(f.name, optarg, WSFONT_NAME_SIZE); in main()
119 f.bitorder = WSDISPLAY_FONTORDER_R2L; in main()
122 f.byteorder = WSDISPLAY_FONTORDER_R2L; in main()
[all …]
/openbsd/src/gnu/usr.sbin/mkhybrid/src/
Dfiles.c83 struct file_adds *f; in FDECL2() local
86 f = root_file_adds; in FDECL2()
99 if (f == NULL) { in FDECL2()
101 f=root_file_adds; in FDECL2()
102 f->name = NULL; in FDECL2()
103 f->child = NULL; in FDECL2()
104 f->next = NULL; in FDECL2()
105 f->add_count = 0; in FDECL2()
106 f->adds = NULL; in FDECL2()
107 f->used = 0; in FDECL2()
[all …]
/openbsd/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 …]
/openbsd/src/gnu/usr.bin/binutils-2.17/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 …]
/openbsd/src/gnu/usr.bin/binutils-2.17/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 …]
/openbsd/src/gnu/usr.bin/perl/lib/Tie/Handle/
Dstdhandle.t14 $f = 'tst';
18 ok(open($f, "+>", "afile"), "open +>, afile");
19 ok(open($f, "+<", "afile"), "open +<, afile");
20 ok(binmode($f), "binmode")
27 ok(print($f "SomeData\n"), "print SomeData"); # line 1
28 is(tell($f), 9, "tell");
29 ok(printf($f "Some %d value\n",1234), "printf"); # line 2
30 ok(print($f "ABCDEF\n"), "print ABCDEF"); # line 3
33 ok(print($f "rhubarb"), "print rhubarb"); # line 4
36 ok(syswrite($f, "123456789\n", 3, 7), "syswrite");# line 5
[all …]
/openbsd/src/gnu/usr.bin/perl/ext/PerlIO-via/
Dvia.xs69 PerlIOVia_method(pTHX_ PerlIO * f, const char *method, CV ** save, int flags, in PerlIOVia_method() argument
72 PerlIOVia *s = PerlIOSelf(f, PerlIOVia); in PerlIOVia_method()
91 if (*PerlIONext(f)) { in PerlIOVia_method()
107 IoIFP(s->io) = PerlIONext(f); in PerlIOVia_method()
108 IoOFP(s->io) = PerlIONext(f); in PerlIOVia_method()
132 PerlIOVia_pushed(pTHX_ PerlIO * f, const char *mode, SV * arg, in PerlIOVia_pushed() argument
135 IV code = PerlIOBase_pushed(aTHX_ f, mode, Nullsv, tab); in PerlIOVia_pushed()
143 PerlIOVia *s = PerlIOSelf(f, PerlIOVia); in PerlIOVia_pushed()
169 mode = PerlIO_modestr(f,lmode); in PerlIOVia_pushed()
172 result = PerlIOVia_method(aTHX_ f, MYMethod(PUSHED), G_SCALAR, in PerlIOVia_pushed()
[all …]
/openbsd/src/usr.bin/rsync/
Duploader.c67 log_dir(struct sess *sess, const struct flist *f) in log_dir() argument
73 sz = strlen(f->path); in log_dir()
75 LOG1("%s%s", f->path, (f->path[sz - 1] == '/') ? "" : "/"); in log_dir()
83 log_symlink(struct sess *sess, const struct flist *f) in log_symlink() argument
87 LOG1("%s -> %s", f->path, f->link); in log_symlink()
94 log_file(struct sess *sess, const struct flist *f) in log_file() argument
98 LOG1("%s", f->path); in log_file()
173 const struct flist *f; in pre_symlink() local
177 f = &p->fl[p->idx]; in pre_symlink()
178 assert(S_ISLNK(f->st.mode)); in pre_symlink()
[all …]

12345678910>>...227