Searched refs:opcode (Results 201 - 225 of 546) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.sbin/mfiutil/
H A Dmfiutil.h151 int mfi_config_read_opcode(int fd, uint32_t opcode,
155 int mfi_dcmd_command(int fd, uint32_t opcode, void *buf, size_t bufsize,
/freebsd-11-stable/sys/netpfil/ipfw/nat64/
H A Dnat64clat.c217 if (cmd->opcode != O_EXTERNAL_ACTION ||
219 icmd->opcode != O_EXTERNAL_INSTANCE ||
H A Dnat64stl.c220 if (cmd->opcode != O_EXTERNAL_ACTION ||
222 icmd->opcode != O_EXTERNAL_INSTANCE ||
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600InstrInfo.h81 bool isReductionOp(unsigned opcode) const;
82 bool isCubeOp(unsigned opcode) const;
316 // Helper functions that check the opcode for status information
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-s390.c30 #include "opcode/s390.h"
325 /* Initialize the default opcode arch and word size from the default
495 /* Insert the opcode formats into a hash table. */
1166 md_gather_operands (str, insn, opcode)
1169 const struct s390_opcode *opcode;
1190 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
1479 f = frag_more (opcode->oplen);
1480 memcpy (f, insn, opcode->oplen);
1481 dwarf2_emit_insn (opcode->oplen);
1495 fix_new_exp (frag_now, f - frag_now->fr_literal, opcode
1544 const struct s390_opcode *opcode; local
[all...]
/freebsd-11-stable/sys/dev/qlxgb/
H A Dqla_hw.c549 rss_config.hdr.opcode = Q8_FWCD_OPCODE_CONFIG_RSS;
579 intr_coalesce.hdr.opcode = Q8_FWCD_OPCODE_CONFIG_INTR_COALESCING;
622 mac_config.hdr.opcode = Q8_FWCD_OPCODE_CONFIG_MAC_ADDR;
650 rcv_mode.hdr.opcode = Q8_FWCD_OPCODE_CONFIG_MAC_RCV_MODE;
696 ip_conf.hdr.opcode = Q8_FWCD_OPCODE_CONFIG_IPADDR;
720 uint16_t etype, opcode, offload = 1; local
750 opcode = Q8_TX_CMD_OP_XMT_TCP_LSO;
811 tx_cmd->flags_opcode = opcode ;
842 uint16_t etype, opcode, offload = 1; local
874 opcode
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_port.c51 MLX5_SET(access_register_in, in, opcode, MLX5_CMD_OP_ACCESS_REG);
479 MLX5_SET(set_wol_rol_in, in, opcode, MLX5_CMD_OP_SET_WOL_ROL);
493 MLX5_SET(query_delay_drop_params_in, in, opcode,
512 MLX5_SET(set_delay_drop_params_in, in, opcode,
740 MLX5_SET(add_vxlan_udp_dport_in, in, opcode,
760 MLX5_SET(delete_vxlan_udp_dport_in, in, opcode,
780 MLX5_SET(query_wol_rol_in, in, opcode, MLX5_CMD_OP_QUERY_WOL_ROL);
800 MLX5_SET(query_cong_status_in, in, opcode,
817 MLX5_SET(modify_cong_status_in, in, opcode,
831 MLX5_SET(query_cong_params_in, in, opcode,
[all...]
/freebsd-11-stable/sys/fs/fuse/
H A Dfuse_ipc.c551 enum fuse_opcode opcode; local
555 opcode = fticket_opcode(ftick);
557 switch (opcode) {
712 panic("FUSE: opcodes out of sync (%d)\n", opcode);
730 ihead->opcode = op;
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DDwarfInstructions.hpp299 uint8_t opcode = addressSpace.get8(p++); local
303 switch (opcode) {
669 value = static_cast<pint_t>(opcode - DW_OP_lit0);
707 reg = static_cast<uint32_t>(opcode - DW_OP_reg0);
752 reg = static_cast<uint32_t>(opcode - DW_OP_breg0);
808 _LIBUNWIND_ABORT("DWARF opcode not implemented");
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw2.c1189 if (insn->o.opcode == O_UID)
1191 else if (insn->o.opcode == O_GID)
1193 else if (insn->o.opcode == O_JAIL)
1819 switch (cmd->opcode) {
1825 * with the opcode.
1832 printf("ipfw: opcode %d unimplemented\n",
1833 cmd->opcode);
2038 if (cmd->opcode == O_IP_DST_LOOKUP)
2044 if (cmd->opcode == O_IP_DST_LOOKUP)
2082 (cmd->opcode
[all...]
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daesni-sha1-x86_64.pl167 { my $opcode = $AUTOLOAD; $opcode =~ s/.*:://;
170 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n";
1991 local *opcode=shift;
1997 unshift @opcode,$rex|0x40 if($rex);
2002 my @opcode=(0x0f,0x3a,0xcc);
2003 rex(\@opcode,$3,$2);
2004 push @opcode,0xc0|($2&7)|(($3&7)<<3); # ModR/M
2006 push @opcode,$c=~/^0/?oct($c):$c;
2007 return ".byte\t".join(',',@opcode);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVN.cpp115 uint32_t opcode; member in struct:llvm::GVN::Expression
120 Expression(uint32_t o = ~2U) : opcode(o) {}
123 if (opcode != other.opcode)
125 if (opcode == ~0U || opcode == ~1U)
136 Value.opcode, Value.type,
276 e.opcode = I->getOpcode();
298 e.opcode = (C->getOpcode() << 8) | Predicate;
324 e.opcode
[all...]
/freebsd-11-stable/sys/contrib/rdma/krping/
H A Dkrping.c382 "wr_id %jx status %d opcode %d vender_err %x\n",
383 (uintmax_t)wc.wr_id, wc.status, wc.opcode, wc.vendor_err);
388 switch (wc.opcode) {
436 "%s:%d Unexpected opcode %d, Shutting down\n",
437 __func__, __LINE__, wc.opcode);
491 cb->sq_wr.opcode = IB_WR_SEND;
508 cb->reg_mr_wr.wr.opcode = IB_WR_REG_MR;
512 cb->invalidate_wr.opcode = IB_WR_LOCAL_INV;
798 cb->rdma_sq_wr.wr.opcode = IB_WR_RDMA_READ_WITH_INV;
801 cb->rdma_sq_wr.wr.opcode
[all...]
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_qp.c1502 switch (wr->wr.opcode) {
1504 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1508 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1574 if (wr->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1655 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1656 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
1664 switch (wr->opcode) {
1694 switch (wr->opcode) {
1753 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1754 mthca_err(dev, "opcode invali
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp566 // opcode we got before either of these was DW_OP_const4u or
1234 error_ptr->SetErrorString("Unimplemented opcode: DW_OP_xderef_size.");
1248 error_ptr->SetErrorString("Unimplemented opcode: DW_OP_xderef.");
1692 error_ptr->SetErrorString("Invalid opcode offset in DW_OP_skip.");
1721 error_ptr->SetErrorString("Invalid opcode offset in DW_OP_bra.");
2031 "Invalid stack frame in context for DW_OP_fbreg opcode.");
2290 error_ptr->SetErrorString("Unimplemented opcode DW_OP_call2.");
2313 error_ptr->SetErrorString("Unimplemented opcode DW_OP_call4.");
2419 "opcode.");
2423 "DW_OP_call_frame_cfa opcode
[all...]
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_all.c622 scsi_op_desc(u_int16_t opcode, struct scsi_inquiry_data *inq_data) argument
658 * If this is true, we have a vendor specific opcode that
661 if ((opcode > 0xBF) || ((opcode > 0x5F) && (opcode < 0x80)))
686 for (i = 0;i < num_ops[j] && table[j][i].opcode <= opcode; i++){
687 if ((table[j][i].opcode == opcode)
704 scsi_op_desc(u_int16_t opcode, struc argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dc-exp.y143 enum exp_opcode opcode;
201 %token <opcode> ASSIGN_MODIFY
1271 enum exp_opcode opcode;
1344 yylval.opcode = tokentab3[i].opcode;
1353 yylval.opcode = tokentab2[i].opcode;
H A Dobjc-exp.y143 enum exp_opcode opcode;
205 %token <opcode> ASSIGN_MODIFY
1217 enum exp_opcode opcode;
1272 yylval.opcode = tokentab3[i].opcode;
1281 yylval.opcode = tokentab2[i].opcode;
/freebsd-11-stable/sys/dev/qlxge/
H A Dqls_hw.h665 uint8_t opcode; member in struct:_q81_tx_mac
700 uint8_t opcode; member in struct:_q81_tx_tso
746 uint8_t opcode; member in struct:_q81_tx_mac_comp
774 uint8_t opcode; member in struct:_q81_tx_tso_comp
801 uint8_t opcode; member in struct:_q81_sys_comp
832 uint8_t opcode; member in struct:_q81_rx
896 uint8_t opcode; member in struct:_q81_cq_e
/freebsd-11-stable/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_tx.c653 u32 opcode; local
738 opcode = cpu_to_be32(MLX4_OPCODE_LSO | MLX4_WQE_CTRL_RR) |
761 opcode = cpu_to_be32(MLX4_OPCODE_SEND) |
882 if ((opcode & cpu_to_be32(0x1F)) == cpu_to_be32(MLX4_OPCODE_LSO))
897 opcode |= cpu_to_be32((bf_prod & 0xffff) << 8);
904 tx_desc->ctrl.owner_opcode = opcode;
916 tx_desc->ctrl.owner_opcode = opcode;
/freebsd-11-stable/sys/netpfil/ipfw/nptv6/
H A Dnptv6.c357 if (cmd->opcode != O_EXTERNAL_ACTION ||
359 icmd->opcode != O_EXTERNAL_INSTANCE ||
773 NPTV6_DEBUG("opcode %d, arg1 %d, opcode0 %d, arg1 %d",
774 cmd->opcode, cmd->arg1, icmd->opcode, icmd->arg1);
775 if (icmd->opcode != O_EXTERNAL_ACTION ||
789 NPTV6_DEBUG("opcode %d, arg1 -> %d", cmd->opcode, cmd->arg1);
830 .opcode = O_EXTERNAL_INSTANCE,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dtext_delta.c214 enum svn_delta_action opcode,
228 if (op->action_code == opcode
229 && (opcode == svn_txdelta_new
233 if (opcode == svn_txdelta_new)
260 switch (opcode)
266 op->action_code = opcode;
271 op->action_code = opcode;
209 svn_txdelta__insert_op(svn_txdelta__ops_baton_t *build_baton, enum svn_delta_action opcode, apr_size_t offset, apr_size_t length, const char *new_data, apr_pool_t *pool) argument
/freebsd-11-stable/sys/dev/cxgb/common/
H A Dcxgb_t3_cpl.h99 CPL_ASYNC_NOTIF = 0x80, /* fake opcode for async notifications */
185 __u8 opcode; member in union:opcode_tid
194 #define MK_OPCODE_TID(opcode, tid) (V_OPCODE(opcode) | (tid))
218 __u8 opcode; member in struct:rss_header
1274 __u8 opcode; member in struct:cpl_trace_pkt
1288 __u8 opcode; member in struct:cpl_rx_pkt
1534 __u8 opcode; member in struct:cpl_barrier
1539 __u8 opcode; member in struct:cpl_rdma_read_req
1545 __u8 opcode; member in struct:cpl_rdma_terminate
[all...]
/freebsd-11-stable/contrib/smbfs/lib/smb/
H A Dnbns_rq.c54 static int nbns_rq_create(int opcode, struct nb_ctx *ctx, struct nbns_rq **rqpp);
145 nbns_rq_create(int opcode, struct nb_ctx *ctx, struct nbns_rq **rqpp) argument
160 rqp->nr_opcode = opcode;
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-cfm.c37 uint8_t opcode; member in struct:cfm_common_header_t
310 tok2str(cfm_opcode_values, "unknown (%u)", cfm_common_header->opcode),
315 * In non-verbose mode just print the opcode and md-level.
334 switch (cfm_common_header->opcode) {

Completed in 518 milliseconds

1234567891011>>