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

12

/openbsd-current/sys/arch/sparc64/stand/bootblk/
H A Dgenassym.sh33 fcode=0 # generate Forth code
50 fcode=1
165 else if (fcode) {
198 ' ccode="$ccode" fcode="$fcode" > "${genassym_temp}/assym.c" || exit 1
203 elif [ "$fcode" = 1 ]; then
/openbsd-current/usr.sbin/tcpdump/
H A Dprivsep_pcap.c58 struct bpf_program fcode; local
78 if (pcap_compile(&hpcap, &fcode, filter, oflag, netmask))
82 if (bpfd >= 0 && ioctl(bpfd, BIOCSETF, &fcode) == -1) {
85 pcap_freecode(&fcode);
88 if (fcode.bf_len > 0) {
90 must_write(sock, &fcode.bf_len, sizeof(fcode.bf_len));
91 must_write(sock, fcode.bf_insns,
92 fcode.bf_len * sizeof(struct bpf_insn));
95 pcap_freecode(&fcode);
119 struct bpf_program *fcode = NULL; local
[all...]
H A Dtcpdump.c215 struct bpf_program *fcode; local
478 fcode = priv_pcap_setfilter(pd, Oflag, netmask);
480 if (fcode == NULL)
483 bpf_dump(fcode, dflag);
/openbsd-current/usr.bin/fgen/
H A Dfgen.l71 static struct fcode *dictionary = NULL;
328 static int fadd(struct fcode *, struct fcode *);
329 static struct fcode *flookup(struct fcode *, const char *);
346 static struct fcode fcodes[] = {
467 { "fcode-revision", 0x0087, 0, NULL, NULL },
654 { "fcode-version", 0x0212, 0, NULL, NULL },
657 { "suspend-fcode", 0x0215, 0, NULL, NULL },
830 * Insert fcode int
[all...]
H A Dfgen.h4 * fgen.h -- stuff for the fcode tokenizer.
45 /* Defined fcode and string. */
46 struct fcode { struct
50 struct fcode *l;
51 struct fcode *r;
/openbsd-current/gnu/gcc/gcc/
H A Dconvert.c131 enum built_in_function fcode = builtin_mathfn_code (expr); local
141 switch (fcode)
196 tree fn = mathfn_built_in (newtype, fcode);
212 && (((fcode == BUILT_IN_FLOORL
213 || fcode == BUILT_IN_CEILL
214 || fcode == BUILT_IN_ROUNDL
215 || fcode == BUILT_IN_RINTL
216 || fcode == BUILT_IN_TRUNCL
217 || fcode == BUILT_IN_NEARBYINTL)
220 || ((fcode
384 const enum built_in_function fcode = builtin_mathfn_code (s_expr); local
[all...]
H A Dbuiltins.c1626 fcode = BUILT_IN_MATHFN; fcodef = BUILT_IN_MATHFN##F ; \
1634 enum built_in_function fcode, fcodef, fcodel;
1722 return implicit_built_in_decls[fcode];
3434 enum built_in_function fcode;
3528 fcode = DECL_FUNCTION_CODE (fndecl);
3529 gcc_assert (fcode == BUILT_IN_MEMSET || fcode == BUILT_IN_BZERO);
3531 if (fcode == BUILT_IN_MEMSET)
5465 FCODE_DIFF should be fcode - base, where base is the FOO_1 code for the
5669 enum built_in_function fcode
1633 enum built_in_function fcode, fcodef, fcodel; local
3433 enum built_in_function fcode; local
5666 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local
6827 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local
6868 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local
7029 enum built_in_function fcode; local
7110 const enum built_in_function fcode = builtin_mathfn_code (arg); local
7246 enum built_in_function fcode; local
7592 const enum built_in_function fcode = builtin_mathfn_code (arg); local
7767 const enum built_in_function fcode = builtin_mathfn_code (arg0); local
7921 const enum built_in_function fcode = builtin_mathfn_code (arg); local
8870 enum built_in_function fcode; local
10074 expand_builtin_memory_chk(tree exp, rtx target, enum machine_mode mode, enum built_in_function fcode) argument
10197 maybe_emit_chk_warning(tree exp, enum built_in_function fcode) argument
10263 maybe_emit_sprintf_chk_warning(tree exp, enum built_in_function fcode) argument
10391 fold_builtin_memory_chk(tree fndecl, tree arglist, tree maxlen, bool ignore, enum built_in_function fcode) argument
10492 fold_builtin_stxcpy_chk(tree fndecl, tree arglist, tree maxlen, bool ignore, enum built_in_function fcode) argument
10722 fold_builtin_sprintf_chk(tree arglist, enum built_in_function fcode) argument
10825 fold_builtin_snprintf_chk(tree arglist, tree maxlen, enum built_in_function fcode) argument
10918 fold_builtin_printf(tree fndecl, tree arglist, bool ignore, enum built_in_function fcode) argument
11072 fold_builtin_fprintf(tree fndecl, tree arglist, bool ignore, enum built_in_function fcode) argument
[all...]
H A Dtree-ssa-ccp.c2538 enum built_in_function fcode;
2551 fcode = DECL_FUNCTION_CODE (callee);
2608 || DECL_FUNCTION_CODE (callee) == fcode)
2537 enum built_in_function fcode; local
/openbsd-current/sys/net/
H A Dbsd-comp.c108 u_int32_t fcode; member in union:bsd_db::bsd_dict::__anon3
461 u_int32_t accm = 0, fcode; local
562 fcode = BSD_KEY(ent, c);
569 if (dictp->f.fcode == fcode) {
583 } while (dictp->f.fcode != fcode);
605 dictp->f.fcode = fcode;
671 u_int32_t fcode; local
1011 u_int32_t fcode; local
[all...]
H A Dbpf.c148 struct bpf_insn *fcode = NULL; local
247 fcode = bps->bps_bf.bf_insns;
248 slen = bpf_filter(fcode, mtod(m, u_char *), len, len);
1124 struct bpf_insn *fcode; local
1138 fcode = mallocarray(flen, sizeof(*fp->bf_insns), M_DEVBUF,
1140 if (fcode == NULL)
1144 if (copyin(fp->bf_insns, fcode, size) != 0 ||
1145 bpf_validate(fcode, (int)flen) == 0) {
1146 free(fcode, M_DEVBUF, size);
1153 bps->bps_bf.bf_insns = fcode;
1372 struct bpf_insn *fcode = NULL; local
[all...]
/openbsd-current/lib/libpcap/
H A Dpcap-int.h110 struct bpf_program fcode; member in struct:pcap
H A Dsavefile.c254 /* XXX padding only needed for kernel fcode */
361 struct bpf_insn *fcode = p->fcode.bf_insns; local
392 if (fcode == NULL ||
393 bpf_filter(fcode, p->buffer, h.len, h.caplen)) {
H A Dpcap-bpf.c358 pcap_freecode(&p->fcode);
906 if (p->fcode.bf_insns != NULL)
907 pcap_freecode(&p->fcode);
908 p->fcode.bf_len = fp->bf_len;
909 p->fcode.bf_insns = reallocarray(NULL,
911 if (p->fcode.bf_insns == NULL) {
916 memcpy(p->fcode.bf_insns, fp->bf_insns,
H A Dpcap.c664 struct bpf_insn *fcode = fp->bf_insns; local
666 if (fcode != NULL)
667 return (bpf_filter(fcode, pkt, h->len, h->caplen));
/openbsd-current/games/backgammon/common_source/
H A Dtable.c44 int fcode; member in struct:state
165 switch (atmata[i].fcode) {
/openbsd-current/gnu/gcc/gcc/cp/
H A Dcall.c590 enum tree_code fcode, tcode; local
612 fcode = TREE_CODE (from);
616 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
619 fcode = TREE_CODE (from);
631 fcode = TREE_CODE (from);
638 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
663 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
664 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
671 else if (tcode == ENUMERAL_TYPE && fcode
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/cp/
H A Dcall.c742 enum tree_code fcode, tcode; local
765 fcode = TREE_CODE (from);
770 if (fcode == FUNCTION_TYPE)
773 fcode = TREE_CODE (from);
776 else if (fcode == ARRAY_TYPE)
779 fcode = TREE_CODE (from);
786 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
813 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
814 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
821 else if (tcode == ENUMERAL_TYPE && fcode
[all...]
/openbsd-current/gnu/gcc/gcc/config/frv/
H A Dfrv.c9301 unsigned fcode = (unsigned)DECL_FUNCTION_CODE (fndecl);
9305 if (fcode < FRV_BUILTIN_FIRST_NONMEDIA && !TARGET_MEDIA)
9311 switch (fcode)
9398 switch (fcode)
9462 if (d->code == fcode)
9466 if (d->code == fcode)
9470 if (d->code == fcode)
9474 if (d->code == fcode)
9478 if (d->code == fcode)
9482 if (d->code == fcode)
9221 unsigned fcode = (unsigned)DECL_FUNCTION_CODE (fndecl); local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/rs6000/
H A Drs6000.c4540 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
4546 switch (fcode)
4596 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
4602 switch (fcode)
4650 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
4662 if (d->code == fcode)
4720 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
4736 switch (fcode)
4813 if (d->code == fcode)
4819 if (dp->code == fcode)
4525 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
4581 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
4635 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
4705 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
4882 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
5178 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
[all...]
/openbsd-current/gnu/gcc/gcc/config/arm/
H A Darm.c12738 int fcode = DECL_FUNCTION_CODE (fndecl);
12745 switch (fcode)
12753 icode = (fcode == ARM_BUILTIN_TEXTRMSB ? CODE_FOR_iwmmxt_textrmsb
12754 : fcode == ARM_BUILTIN_TEXTRMUB ? CODE_FOR_iwmmxt_textrmub
12755 : fcode == ARM_BUILTIN_TEXTRMSH ? CODE_FOR_iwmmxt_textrmsh
12756 : fcode == ARM_BUILTIN_TEXTRMUH ? CODE_FOR_iwmmxt_textrmuh
12788 icode = (fcode == ARM_BUILTIN_TINSRB ? CODE_FOR_iwmmxt_tinsrb
12789 : fcode == ARM_BUILTIN_TINSRH ? CODE_FOR_iwmmxt_tinsrh
12884 icode = (fcode == ARM_BUILTIN_WMACS ? CODE_FOR_iwmmxt_wmacs
12885 : fcode
12718 int fcode = DECL_FUNCTION_CODE (fndecl); local
[all...]
/openbsd-current/gnu/gcc/gcc/config/bfin/
H A Dbfin.c4264 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
4269 switch (fcode)
4282 icode = (fcode == BFIN_BUILTIN_DIFFHL_2X16
4360 tmp1 = (fcode == BFIN_BUILTIN_CPLX_MAC_16 ? const1_rtx : const0_rtx);
4361 tmp2 = (fcode == BFIN_BUILTIN_CPLX_MAC_16 ? const0_rtx : const1_rtx);
4374 if (d->code == fcode)
4379 if (d->code == fcode)
4245 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
/openbsd-current/gnu/gcc/gcc/config/rs6000/
H A Drs6000.c7137 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
7143 switch (fcode)
7191 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
7197 switch (fcode)
7243 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
7255 if (d->code == fcode)
7416 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
7418 if (fcode >= ALTIVEC_BUILTIN_OVERLOADED_FIRST
7419 && fcode <= ALTIVEC_BUILTIN_OVERLOADED_LAST)
7440 switch (fcode)
7121 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
7175 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
7227 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
7400 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
7606 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
7904 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
[all...]
H A Drs6000-c.c2487 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
2493 if (fcode < ALTIVEC_BUILTIN_OVERLOADED_FIRST
2494 || fcode > ALTIVEC_BUILTIN_OVERLOADED_LAST)
2554 if (fcode == ALTIVEC_BUILTIN_VEC_STEP)
2563 desc->code && desc->code != fcode; desc++)
2568 for (; desc->code == fcode; desc++)
2485 unsigned int fcode = DECL_FUNCTION_CODE (fndecl); local
/openbsd-current/gnu/usr.bin/gcc/gcc/config/frv/
H A Dfrv.c9710 unsigned fcode = (unsigned)DECL_FUNCTION_CODE (fndecl);
9720 switch (fcode)
9767 switch (fcode)
9800 if (d->code == fcode)
9804 if (d->code == fcode)
9808 if (d->code == fcode)
9812 if (d->code == fcode)
9819 if (d->code == fcode)
9827 if (d->code == fcode)
9835 if (d->code == fcode)
9632 unsigned fcode = (unsigned)DECL_FUNCTION_CODE (fndecl); local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dbuiltins.c3806 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
3817 switch (fcode)
3870 switch (fcode)
4305 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
4310 switch (fcode)
3804 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local
4303 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); local

Completed in 631 milliseconds

12