Searched refs:op3 (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/contrib/one-true-awk/
H A Dawkgram.y201 { $$ = op3(CONDEXPR, notnull($1), $3, $5); }
206 | ppattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); }
209 $$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0));
211 $$ = op3($2, (Node *)1, $1, $3); }
222 { $$ = op3(CONDEXPR, notnull($1), $3, $5); }
233 | pattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); }
236 $$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0));
238 $$ = op3($2, (Node *)1, $1, $3); }
243 else $$ = op3(GETLINE, $4, itonp($2), $1); }
246 else $$ = op3(GETLIN
[all...]
H A Dproto.h80 extern Node *op3(int, Node *, Node *, Node *);
H A Dparse.c150 Node *op3(int a, Node *b, Node *c, Node *d) function
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_table.c904 manage_table_ent_v0(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
916 if (sd->valsize < (sizeof(*op3) + hdrlen))
922 xent = (ipfw_table_xentry *)(op3 + 1);
944 error = (op3->opcode == IP_FW_TABLE_XADD) ?
961 manage_table_ent_v1(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
1082 find_table_entry(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
1154 flush_table_v0(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
1164 oh = (struct _ipfw_obj_header *)op3;
1167 if (op3->opcode == IP_FW_TABLE_XDESTROY)
1169 else if (op3
1330 swap_table(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
1695 list_tables(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
1723 describe_table(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
1758 modify_table(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
1815 create_table(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
2164 dump_table_v1(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
2228 dump_table_v0(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
2289 get_table_size(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
2695 list_table_algo(struct ip_fw_chain *ch, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
[all...]
H A Dip_fw_sockopt.c112 static int dump_config(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
114 static int add_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
116 static int del_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
118 static int clear_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
120 static int move_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
122 static int manage_sets(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
124 static int dump_soptcodes(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
126 static int dump_srvobjects(struct ip_fw_chain *chain, ip_fw3_opheader *op3,
1320 del_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3, argument
1351 move_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3, argument
1378 clear_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
1480 manage_sets(struct ip_fw_chain *chain, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
2420 dump_config(struct ip_fw_chain *chain, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
2927 add_rules(struct ip_fw_chain *chain, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
3110 dump_soptcodes(struct ip_fw_chain *chain, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
3373 dump_srvobjects(struct ip_fw_chain *chain, ip_fw3_opheader *op3, struct sockopt_data *sd) argument
3682 ip_fw3_opheader *op3 = NULL; local
[all...]
H A Dip_fw_iface.c70 static int list_ifaces(struct ip_fw_chain *ch, ip_fw3_opheader *op3,
498 list_ifaces(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
H A Dip_fw_table.h163 int ipfw_get_table_size(struct ip_fw_chain *ch, ip_fw3_opheader *op3,
H A Dip_fw_nat.c566 nat44_cfg(struct ip_fw_chain *chain, ip_fw3_opheader *op3, argument
611 nat44_destroy(struct ip_fw_chain *chain, ip_fw3_opheader *op3, argument
669 nat44_get_cfg(struct ip_fw_chain *chain, ip_fw3_opheader *op3, argument
767 nat44_list_nat(struct ip_fw_chain *chain, ip_fw3_opheader *op3, argument
814 nat44_get_log(struct ip_fw_chain *chain, ip_fw3_opheader *op3, argument
H A Dip_fw_table_value.c67 static int list_table_values(struct ip_fw_chain *ch, ip_fw3_opheader *op3,
728 list_table_values(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
H A Dip_fw_private.h680 ip_fw3_opheader *op3, struct sockopt_data *sd);
/freebsd-11-stable/sbin/ipfw/
H A Dipfw2.h357 int do_set3(int optname, struct _ip_fw3_opheader *op3, size_t optlen);
358 int do_get3(int optname, struct _ip_fw3_opheader *op3, size_t *optlen);
H A Dipfw2.c601 * Assumes op3 header is already embedded.
606 do_set3(int optname, ip_fw3_opheader *op3, size_t optlen) argument
617 op3->opcode = optname;
619 return (setsockopt(ipfw_socket, IPPROTO_IP, IP_FW3, op3, optlen));
628 * Assumes op3 header is already embedded.
633 do_get3(int optname, ip_fw3_opheader *op3, size_t *optlen) argument
646 op3->opcode = optname;
649 error = getsockopt(ipfw_socket, IPPROTO_IP, IP_FW3, op3, &len);
5257 ip_fw3_opheader *op3; local
5266 op3
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/nat64/
H A Dnat64lsn_control.c112 nat64lsn_create(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
237 nat64lsn_destroy(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
246 oh = (ipfw_obj_header *)op3;
362 nat64lsn_list(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
685 nat64lsn_states(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
H A Dnat64clat_control.c145 nat64clat_create(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
317 nat64clat_destroy(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
359 nat64clat_list(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
H A Dnat64stl_control.c176 nat64stl_create(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
322 nat64stl_destroy(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
364 nat64stl_list(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu.c195 * Helper for forming the below case statements. Build only the op3 and opf
198 #define FOP(op3, opf) \
199 ((op3) << IF_F3_OP3_SHIFT | (opf) << IF_F3_OPF_SHIFT)
/freebsd-11-stable/sys/i386/i386/
H A Ddb_disasm.c103 #define op3(x,y,z) ((x)|((y)<<8)|((z)<<16)) macro
324 /*a4*/ { "shld", TRUE, LONG, op3(Ib,R,E), 0 },
325 /*a5*/ { "shld", TRUE, LONG, op3(CL,R,E), 0 },
333 /*ac*/ { "shrd", TRUE, LONG, op3(Ib,R,E), 0 },
334 /*ad*/ { "shrd", TRUE, LONG, op3(CL,R,E), 0 },
698 /*69*/ { "imul", TRUE, LONG, op3(I,E,R), 0 },
700 /*6b*/ { "imul", TRUE, LONG, op3(Ibs,E,R),0 },
/freebsd-11-stable/sys/amd64/amd64/
H A Ddb_disasm.c118 #define op3(x,y,z) ((x)|((y)<<8)|((z)<<16)) macro
398 /*a4*/ { "shld", TRUE, LONG, op3(Ib,R,E), 0 },
399 /*a5*/ { "shld", TRUE, LONG, op3(CL,R,E), 0 },
407 /*ac*/ { "shrd", TRUE, LONG, op3(Ib,R,E), 0 },
408 /*ad*/ { "shrd", TRUE, LONG, op3(CL,R,E), 0 },
783 /*69*/ { "imul", TRUE, LONG, op3(I,E,R), 0 },
785 /*6b*/ { "imul", TRUE, LONG, op3(Ibs,E,R),0 },
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-pre.c1604 tree op3 = TREE_OPERAND (expr, 3); local
1614 gcc_assert (!op3 || is_gimple_min_invariant (op3)
1615 || TREE_CODE (op3) == VALUE_HANDLE);
1616 if (op3
1617 && !set_contains_value (set, op3))
2223 tree op1, op2, op3; local
2233 op3 = TREE_OPERAND (genop, 3);
2234 if (op3 && TREE_CODE (op3)
[all...]
H A Doptabs.c4070 enum machine_mode cmode, rtx op2, rtx op3,
4099 if (swap_commutative_operands_p (op2, op3)
4104 op2 = op3;
4105 op3 = tem;
4133 (op3, insn_data[icode].operand[3].mode))
4134 op3 = copy_to_mode_reg (insn_data[icode].operand[3].mode, op3);
4149 insn = GEN_FCN (icode) (subtarget, comparison, op2, op3);
4198 enum machine_mode cmode, rtx op2, rtx op3,
4227 if (swap_commutative_operands_p (op2, op3)
4051 emit_conditional_move(rtx target, enum rtx_code code, rtx op0, rtx op1, enum machine_mode cmode, rtx op2, rtx op3, enum machine_mode mode, int unsignedp) argument
4179 emit_conditional_add(rtx target, enum rtx_code code, rtx op0, rtx op1, enum machine_mode cmode, rtx op2, rtx op3, enum machine_mode mode, int unsignedp) argument
[all...]
H A Dtree.c2360 tree op0, op1, op2, op3;
2449 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
2453 && op3 == TREE_OPERAND (exp, 3))
2456 new = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
2479 tree op0, op1, op2, op3;
2580 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
2584 && op3 == TREE_OPERAND (exp, 3))
2587 return fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
2344 tree op0, op1, op2, op3; local
2463 tree op0, op1, op2, op3; local
/freebsd-11-stable/sys/netpfil/ipfw/nptv6/
H A Dnptv6.c508 nptv6_create(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
576 nptv6_destroy(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
631 nptv6_list(struct ip_fw_chain *ch, ip_fw3_opheader *op3, argument
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dsparc-opc.c170 #define COMMUTEOP(opcode, op3, arch_mask) \
171 { opcode, F3(2, op3, 0), F3(~2, ~op3, ~0)|ASI(~0), "1,2,d", 0, arch_mask }, \
172 { opcode, F3(2, op3, 1), F3(~2, ~op3, ~1), "1,i,d", 0, arch_mask }, \
173 { opcode, F3(2, op3, 1), F3(~2, ~op3, ~1), "i,1,d", 0, arch_mask }
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Drs6000-c.c168 signed char op3;
2565 && (desc->op3 == RS6000_BTI_NOT_OPAQUE
2566 || rs6000_builtin_type_compatible (types[2], desc->op3)))
167 signed char op3; member in struct:altivec_builtin_types
H A Drs6000.c7901 rtx op3 = expand_normal (arg3);
7922 if (! (*insn_data[icode].operand[1].predicate) (op3, mode1))
7923 op3 = copy_to_mode_reg (mode0, op3);
7933 emit_insn (gen_spe_evsel (target, op2, op3, scratch));
7935 emit_insn (gen_spe_evsel_fs (target, op2, op3, scratch));
7885 rtx op3 = expand_normal (arg3); local

Completed in 404 milliseconds

12