Searched refs:pf (Results 1 - 25 of 237) sorted by relevance

12345678910

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dconversion3.C5 typedef int (*pf)(void *, void *); typedef
6 qsort(0, 0, 0, pf(f)); // ERROR - adding const to function parms
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dpmf2.C12 S * pf; variable
17 pmf = & pf->f; // ERROR - not a valid pmf expression
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D930607-1.c2 typedef f *pf; typedef
8 ((pf) (long) p) ();
/openbsd-current/sys/dev/pcmcia/
H A Dpcmcia.c71 pcmcia_ccr_read(struct pcmcia_function *pf, int ccr) argument
74 return (bus_space_read_1(pf->pf_ccrt, pf->pf_ccrh,
75 pf->pf_ccr_offset + ccr));
79 pcmcia_ccr_write(struct pcmcia_function *pf, int ccr, int val) argument
82 if ((pf->ccr_mask) & (1 << (ccr / 2))) {
83 bus_space_write_1(pf->pf_ccrt, pf->pf_ccrh,
84 pf->pf_ccr_offset + ccr, val);
121 struct pcmcia_function *pf; local
153 struct pcmcia_function *pf; local
247 struct pcmcia_function *pf; local
275 struct pcmcia_function *pf; local
356 struct pcmcia_function *pf; local
377 pcmcia_function_init(struct pcmcia_function *pf, struct pcmcia_config_entry *cfe) argument
389 pcmcia_function_enable(struct pcmcia_function *pf) argument
533 pcmcia_function_disable(struct pcmcia_function *pf) argument
585 pcmcia_io_map(struct pcmcia_function *pf, int width, bus_addr_t offset, bus_size_t size, struct pcmcia_io_handle *pcihp, int *windowp) argument
634 pcmcia_intr_establish(struct pcmcia_function *pf, int ipl, int (*ih_fct)(void *), void *ih_arg, char *xname) argument
736 pcmcia_intr_disestablish(struct pcmcia_function *pf, void *ih) argument
818 pcmcia_intr_string(struct pcmcia_function *pf, void *ih) argument
827 struct pcmcia_function *pf; local
[all...]
H A Dpcmciavar.h182 struct pcmcia_function *pf; member in struct:pcmcia_cis_quirk
190 struct pcmcia_function *pf; member in struct:pcmcia_attach_args
250 #define pcmcia_io_alloc(pf, start, size, align, pciop) \
251 (pcmcia_chip_io_alloc((pf)->sc->pct, pf->sc->pch, (start), \
257 #define pcmcia_io_unmap(pf, window) \
258 (pcmcia_chip_io_unmap((pf)->sc->pct, (pf)->sc->pch, (window)))
260 #define pcmcia_io_free(pf, pciop) \
261 (pcmcia_chip_io_free((pf)
[all...]
H A Dpcmcia_cis_quirks.c214 struct pcmcia_function *pf, *pf_next, *pf_last; local
217 pf = NULL;
248 for (pf = SIMPLEQ_FIRST(&sc->card.pf_head); pf != NULL;
249 pf = pf_next) {
250 for (cfe = SIMPLEQ_FIRST(&pf->cfe_head); cfe != NULL;
255 pf_next = SIMPLEQ_NEXT(pf, pf_list);
256 free(pf, M_DEVBUF, 0);
263 if (pf_last == pcmcia_cis_quirks[i].pf) {
269 SIMPLEQ_INSERT_TAIL(&pf
[all...]
H A Dif_an_pcmcia.c75 if (pa->pf->function != PCMCIA_FUNCTION_NETWORK)
101 psc->sc_pf = pa->pf;
102 cfe = SIMPLEQ_FIRST(&pa->pf->cfe_head);
104 pcmcia_function_init(pa->pf, cfe);
105 if (pcmcia_function_enable(pa->pf)) {
110 if (pcmcia_io_alloc(pa->pf, 0, AN_IOSIZ, AN_IOSIZ, &psc->sc_pcioh)) {
112 pcmcia_function_disable(pa->pf);
116 if (pcmcia_io_map(pa->pf, PCMCIA_WIDTH_IO16, 0, AN_IOSIZ,
119 pcmcia_io_free(pa->pf, &psc->sc_pcioh);
120 pcmcia_function_disable(pa->pf);
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dwarn8.C11 bool (*pf)() = func;
18 if (pf) ;
H A Ddyncast5.C57 Foo *pf = new Foo; local
58 pf->isObjectAllocation(pf);
60 Mumble1 *pm1 = pf;
63 Mumble2 *pm2 = pf;
66 // delete pf;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/parse/
H A Dptrmem1.C9 PF pf = &A::f; local
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.ns/
H A Dtemplate10.C7 void (*pf)() = N::g<int>; variable
/openbsd-current/gnu/usr.bin/perl/ext/Pod-Functions/
H A DMakefile.PL26 my $pf = catfile(updir, updir, 'pod', 'perlfunc.pod');
31 Functions.pm :: Functions_pm.PL $pf
32 \$(PERLRUN) Functions_pm.PL $pf
/openbsd-current/regress/sys/netinet6/autoport/
H A Dautoport.pl10 my ($pf, $host, $sin, $badsock);
13 die "usage: $0 <pf> <listen> <first> [count]\n"
41 $pf = PF_INET;
42 $sin = sockaddr_in($test_listen, inet_pton($pf,"127.0.0.1"));
44 $pf = PF_INET6;
45 $sin = sockaddr_in6($test_listen, inet_pton($pf,"::1"));
65 socket(my $servsock, $pf, SOCK_STREAM, getprotobyname("tcp"))
81 socket(my $sock, $pf, SOCK_STREAM, getprotobyname("tcp"))
91 socket($badsock, $pf, SOCK_STREAM, getprotobyname("tcp"))
121 socket($servsock, $pf, SOCK_STREA
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.eh/
H A Dspec7.C4 void (*pf)() throw () = f; variable
16 pf ();
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dspec1.C6 mem_fun1_t(S (T::*pf)(double)) {}
12 mem_fun1_t(void (T::*pf)(double)) {}
/openbsd-current/regress/sys/ffs/tests/truncate/
H A D11.t8 cp -pf `which sleep` ${n0}
/openbsd-current/libexec/tradcpp/
H A Dplace.c66 struct placefile *pf; local
70 pf = domalloc(sizeof(*pf));
71 pf->includedfrom = *from;
75 pf->dir = dostrndup(name, len);
77 pf->name = dostrdup(name);
78 pf->fromsystemdir = fromsystemdir;
81 pf->depth = from->file->depth + 1;
83 pf->depth = 1;
85 return pf;
90 placefile_destroy(struct placefile *pf) argument
112 struct placefile *pf; local
128 struct placefile *pf; local
146 struct placefile *pf; local
188 place_setfilestart(struct place *p, const struct placefile *pf) argument
[all...]
/openbsd-current/regress/sys/kern/descrip/
H A Ddescrip.c32 pid_t pf, pw; local
40 pf = fork();
41 if (pf == 0) {
59 assert(pf > 0);
62 assert(pf == pw);
/openbsd-current/regress/sys/net/pf_print/
H A DMakefile8 pf_print_host.c: ../../../../sys/net/pf.c Makefile
10 ${.CURDIR}/../../../../sys/net/pf.c >$@.tmp
/openbsd-current/sys/netinet/
H A Dtcp_debug.c132 int pf = PF_UNSPEC; local
150 pf = tp->pf;
159 if (pf == PF_UNSPEC) {
163 pf = PF_INET6;
167 pf = PF_INET;
171 switch (pf) {
224 #define pf(f) { if (th->th_flags&TH_##f) { printf("%s%s", cp, #f); cp = ","; } } macro
225 pf(SYN); pf(AC
[all...]
/openbsd-current/sbin/pfctl/
H A Dpfctl.c129 char *pf_device = "/dev/pf";
307 errx(1, "pf already enabled");
312 fprintf(stderr, "pf enabled\n");
322 errx(1, "pf not enabled");
327 fprintf(stderr, "pf disabled\n");
345 fprintf(stderr, "pf: statistics cleared");
364 fprintf(stderr, "pf: interface flags reset\n");
1167 pfctl_add_rule(struct pfctl *pf, struct pf_rule *r) argument
1172 rs = &pf->anchor->ruleset;
1182 pfctl_ruleset_trans(struct pfctl *pf, cha argument
1197 pfctl_add_queue(struct pfctl *pf, struct pf_queuespec *q) argument
1291 pfctl_load_queue(struct pfctl *pf, u_int32_t ticket, struct pfctl_qsitem *qi) argument
1311 pfctl_load_queues(struct pfctl *pf) argument
1428 pfctl_load_ruleset(struct pfctl *pf, char *path, struct pf_ruleset *rs, int depth) argument
1490 pfctl_load_rule(struct pfctl *pf, char *path, struct pf_rule *r, int depth) argument
1542 struct pfctl pf; local
1691 pfctl_init_options(struct pfctl *pf) argument
1750 pfctl_load_options(struct pfctl *pf) argument
1820 pfctl_set_limit(struct pfctl *pf, const char *opt, unsigned int limit) argument
1843 pfctl_load_limit(struct pfctl *pf, unsigned int index, unsigned int limit) argument
1863 pfctl_set_timeout(struct pfctl *pf, const char *opt, int seconds, int quiet) argument
1888 pfctl_load_timeout(struct pfctl *pf, unsigned int timeout, unsigned int seconds) argument
1903 pfctl_set_synflwats(struct pfctl *pf, u_int32_t lowat, u_int32_t hiwat) argument
1919 pfctl_set_reassembly(struct pfctl *pf, int on, int nodf) argument
1938 pfctl_set_syncookies(struct pfctl *pf, u_int8_t val, struct pfctl_watermarks *w) argument
1982 pfctl_set_optimization(struct pfctl *pf, const char *opt) argument
2009 pfctl_set_logif(struct pfctl *pf, char *ifname) argument
2028 pfctl_load_logif(struct pfctl *pf, char *ifname) argument
2046 pfctl_set_hostid(struct pfctl *pf, u_int32_t hostid) argument
2058 pfctl_load_hostid(struct pfctl *pf, u_int32_t hostid) argument
2068 pfctl_load_reassembly(struct pfctl *pf, u_int32_t reassembly) argument
2078 pfctl_load_syncookies(struct pfctl *pf, u_int8_t val) argument
2088 pfctl_set_debug(struct pfctl *pf, char *d) argument
2113 pfctl_load_debug(struct pfctl *pf, unsigned int level) argument
2123 pfctl_set_interface_flags(struct pfctl *pf, char *ifname, int flags, int how) argument
2441 struct pfctl pf; local
[all...]
/openbsd-current/regress/sbin/pfctl/
H A Dchangerule.c19 * changerule - simple tool to test DIOCCHANGERULE functionality (see pf(4))
87 struct pfctl pf; local
92 memset(&pf, 0, sizeof(pf));
94 pf.anchor = &rs_anchor;
97 if (strlcpy(pf.anchor->path, anchorname,
98 sizeof(pf.anchor->path)) >= sizeof (pf.anchor->path))
101 pf.astack[0] = pf
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.misc-tests/
H A Di386-prefetch.exp84 gcc-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/i386-pf-none-*.c]] ""
88 gcc-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/i386-pf-sse-*.c]] ""
92 gcc-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/i386-pf-3dnow-*.c]] ""
96 gcc-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/i386-pf-athlon-*.c]] ""
/openbsd-current/regress/sys/ffs/tests/open/
H A D20.t8 cp -pf `which sleep` ${n0}
/openbsd-current/regress/sys/net/pf_table/
H A DMakefile5 pf-instab.conf \
6 pf-instance.conf \
7 pf-reftab.conf \
45 pf-instab.conf:
52 pf-reftab.conf:
57 # we load pf-instab.conf. Deals with case when persistent table <instance>
58 # exists before pf-instab.conf gets loaded.
74 # reference by rule after pf-reftab.conf got loaded.
87 flags: pf-instab.conf pf
[all...]

Completed in 883 milliseconds

12345678910