Searched refs:fcode (Results 1 - 25 of 49) sorted by relevance

12

/freebsd-11-stable/contrib/gcc/
H A Dconvert.c180 enum built_in_function fcode = builtin_mathfn_code (expr); local
190 switch (fcode)
245 tree fn = mathfn_built_in (newtype, fcode);
261 && (((fcode == BUILT_IN_FLOORL
262 || fcode == BUILT_IN_CEILL
263 || fcode == BUILT_IN_ROUNDL
264 || fcode == BUILT_IN_RINTL
265 || fcode == BUILT_IN_TRUNCL
266 || fcode == BUILT_IN_NEARBYINTL)
269 || ((fcode
433 const enum built_in_function fcode = builtin_mathfn_code (s_expr); local
[all...]
H A Dbuiltins.c1624 fcode = BUILT_IN_MATHFN; fcodef = BUILT_IN_MATHFN##F ; \
1632 enum built_in_function fcode, fcodef, fcodel;
1720 return implicit_built_in_decls[fcode];
3421 enum built_in_function fcode;
3515 fcode = DECL_FUNCTION_CODE (fndecl);
3516 gcc_assert (fcode == BUILT_IN_MEMSET || fcode == BUILT_IN_BZERO);
3518 if (fcode == BUILT_IN_MEMSET)
5472 FCODE_DIFF should be fcode - base, where base is the FOO_1 code for the
5676 enum built_in_function fcode
1631 enum built_in_function fcode, fcodef, fcodel; local
3420 enum built_in_function fcode; local
5673 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local
6834 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local
6875 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local
7036 enum built_in_function fcode; local
7117 const enum built_in_function fcode = builtin_mathfn_code (arg); local
7253 enum built_in_function fcode; local
7660 const enum built_in_function fcode = builtin_mathfn_code (arg); local
7835 const enum built_in_function fcode = builtin_mathfn_code (arg0); local
7989 const enum built_in_function fcode = builtin_mathfn_code (arg); local
8947 enum built_in_function fcode; local
10143 expand_builtin_memory_chk(tree exp, rtx target, enum machine_mode mode, enum built_in_function fcode) argument
10266 maybe_emit_chk_warning(tree exp, enum built_in_function fcode) argument
10332 maybe_emit_sprintf_chk_warning(tree exp, enum built_in_function fcode) argument
10460 fold_builtin_memory_chk(tree fndecl, tree arglist, tree maxlen, bool ignore, enum built_in_function fcode) argument
10561 fold_builtin_stxcpy_chk(tree fndecl, tree arglist, tree maxlen, bool ignore, enum built_in_function fcode) argument
10791 fold_builtin_sprintf_chk(tree arglist, enum built_in_function fcode) argument
10894 fold_builtin_snprintf_chk(tree arglist, tree maxlen, enum built_in_function fcode) argument
10987 fold_builtin_printf(tree fndecl, tree arglist, bool ignore, enum built_in_function fcode) argument
11141 fold_builtin_fprintf(tree fndecl, tree arglist, bool ignore, enum built_in_function fcode) argument
[all...]
/freebsd-11-stable/contrib/libpcap/testprogs/
H A Dfiltertest.c209 struct bpf_program fcode; local
317 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0)
321 if (!bpf_validate(fcode.bf_insns, fcode.bf_len))
338 bpf_dump(&fcode, dflag);
341 pcap_freecode (&fcode);
H A Dcapturetest.c74 struct bpf_program fcode; local
174 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0)
177 if (pcap_setfilter(pd, &fcode) < 0)
210 pcap_freecode(&fcode);
H A Dthreadsignaltest.c188 struct bpf_program fcode; local
264 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0)
267 if (pcap_setfilter(pd, &fcode) < 0)
305 pcap_freecode(&fcode);
H A Dselpolltest.c74 struct bpf_program fcode; local
154 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0)
156 if (pcap_setfilter(pd, &fcode) < 0)
H A Dvalgrindtest.c248 struct bpf_program fcode; local
409 if (pcap_compile(pd, &fcode, cmdbuf, 1, 0) < 0)
411 if (pcap_setfilter(pd, &fcode) < 0)
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-enet.c58 register struct bpf_insn *fcode = fp->bf_insns; local
78 if (bpf_filter(fcode, (char *)ph->packet,
92 if (bpf_filter(fcode, buf.hdr.packet, cc, caplen)) {
H A Dsavefile.c247 pcap_freecode(&p->fcode);
430 /* Padding only needed for live capture fcode */
501 struct bpf_insn *fcode; local
533 if ((fcode = p->fcode.bf_insns) == NULL ||
534 bpf_filter(fcode, data, h.len, h.caplen)) {
H A Dpcap-septel.c129 if ((p->fcode.bf_insns == NULL) || bpf_filter(p->fcode.bf_insns, dp, packet_len, caplen)) {
H A Dpcap-dbus.c93 if (handle->fcode.bf_insns == NULL ||
94 bpf_filter(handle->fcode.bf_insns, (u_char *)raw_msg, pkth.len, pkth.caplen)) {
H A Dpcap-bt-monitor-linux.c141 if (handle->fcode.bf_insns == NULL ||
142 bpf_filter(handle->fcode.bf_insns, pktd, pkth.len, pkth.caplen)) {
H A Dpcap-snoop.c128 if (p->fcode.bf_insns == NULL ||
129 bpf_filter(p->fcode.bf_insns, cp, datalen, caplen)) {
H A Dpcap-bt-linux.c372 if (handle->fcode.bf_insns == NULL ||
373 bpf_filter(handle->fcode.bf_insns, pktd, pkth.len, pkth.caplen)) {
H A Dpcap-usb-linux.c1012 if (handle->fcode.bf_insns == NULL ||
1013 bpf_filter(handle->fcode.bf_insns, handle->buffer,
1214 if (handle->fcode.bf_insns == NULL ||
1215 bpf_filter(handle->fcode.bf_insns, handle->buffer,
1329 if (handle->fcode.bf_insns == NULL ||
1330 bpf_filter(handle->fcode.bf_insns, (u_char*) hdr,
H A Dpcap-linux.c484 static int fix_program(pcap_t *handle, struct sock_fprog *fcode,
487 static int set_kernel_filter(pcap_t *handle, struct sock_fprog *fcode);
2092 if (handlep->filter_in_userland && handle->fcode.bf_insns) {
2093 if (bpf_filter_with_aux_data(handle->fcode.bf_insns, bp,
2895 struct sock_fprog fcode; local
2926 if (handle->fcode.bf_len > USHRT_MAX) {
2928 * fcode.len is an unsigned short for current kernel.
2934 fcode.len = 0;
2935 fcode.filter = NULL;
2954 switch (fix_program(handle, &fcode, is_mmappe
7174 fix_program(pcap_t *handle, struct sock_fprog *fcode, int is_mmapped) argument
7355 set_kernel_filter(pcap_t *handle, struct sock_fprog *fcode) argument
[all...]
H A Dpcap-rdmasniff.c158 if (handle->fcode.bf_insns == NULL ||
159 bpf_filter(handle->fcode.bf_insns, pktd, pkth.len, pkth.caplen)) {
H A Dpcap-snf.c179 if ((p->fcode.bf_insns == NULL) ||
180 bpf_filter(p->fcode.bf_insns, req.pkt_addr, req.length, caplen)) {
H A Ddlpisubs.c179 if (bpf_filter(p->fcode.bf_insns, pk, origlen, caplen)) {
H A Dpcap-nit.c182 if (bpf_filter(p->fcode.bf_insns, cp, nh->nh_wirelen, caplen)) {
H A Dpcap-int.h248 struct bpf_program fcode; member in struct:pcap
H A Dpcap-npf.c609 p->fcode.bf_insns == NULL ||
610 bpf_filter(p->fcode.bf_insns, datap, bhp->bh_datalen, caplen)) {
815 if (p->fcode.bf_insns)
817 if (bpf_filter(p->fcode.bf_insns, dp, packet_len, caplen) == 0)
/freebsd-11-stable/usr.bin/compress/
H A Dzopen.c162 #define fcode zs->u.w.zs_fcode macro
276 for (fcode = (long)hsize; fcode < 65536L; fcode *= 2L)
286 fcode = (long)(((long)c << maxbits) + ent);
289 if (htabof(i) == fcode) {
300 if (htabof(i) == fcode) {
312 htabof(i) = fcode;
/freebsd-11-stable/sys/net/
H A Dbpf.c681 bpf_check_upgrade(u_long cmd, struct bpf_d *d, struct bpf_insn *fcode, int flen) argument
688 if (d->bd_writer == 0 || fcode == NULL)
701 if (cmd == BIOCSETF && flen == 1 && fcode[0].code == (BPF_RET | BPF_K))
1833 struct bpf_insn *fcode, *old; local
1862 fcode = NULL;
1878 fcode = malloc(size, M_BPF, M_WAITOK);
1879 if (copyin(fp->bf_insns, fcode, size) != 0 ||
1880 !bpf_validate(fcode, flen)) {
1881 free(fcode, M_BPF);
1885 /* Filter is copied inside fcode an
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dtcpdump.c1148 struct bpf_program fcode; local
1807 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0)
1810 bpf_dump(&fcode, dflag);
1813 pcap_freecode(&fcode);
1892 if (pcap_setfilter(pd, &fcode) < 0)
2144 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0)
2151 if (pcap_setfilter(pd, &fcode) < 0)
2173 pcap_freecode(&fcode);

Completed in 463 milliseconds

12