Searched refs:opc (Results 26 - 50 of 79) sorted by relevance

1234

/freebsd-13-stable/sbin/nvmecontrol/
H A Dfirmware.c183 pt.cmd.opc = NVME_OPC_FIRMWARE_IMAGE_DOWNLOAD;
209 pt.cmd.opc = NVME_OPC_FIRMWARE_ACTIVATE;
H A Dformat.c211 pt.cmd.opc = NVME_OPC_FORMAT_NVM;
H A Dpassthru.c230 pt.cmd.opc = opt.opcode;
/freebsd-13-stable/contrib/processor-trace/libipt/src/
H A Dpt_encoder.c210 * Write an IP packet with opcode \@opc and payload from \@packet if there is
223 uint8_t opc, ipc; local
234 /* opc size = */ 1u + (unsigned int) size);
240 opc = (uint8_t) op;
243 *pos++ = opc | ipc;
246 return /* opc size = */ 1 + size;
325 uint8_t opc, stop; local
335 opc = (uint8_t)
338 *pos++ = (uint8_t) (opc | (1u << stop));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp513 unsigned opc = 4; // bits {24-21}. Default to add: 0b0100 local
516 opc = 2; // 0b0010
523 return ARM_AM::getSOImmVal(Value) | (opc << 21);
528 unsigned opc = 0; local
531 opc = 5;
534 uint32_t out = (opc << 21);
/freebsd-13-stable/usr.sbin/bhyve/
H A Dpci_nvme.c215 uint16_t opc; member in struct:pci_nvme_ioreq
1491 req->opc = command->opc;
1577 switch (cmd->opc) {
1635 cmd->opc);
1666 pci_nvme_stats_write_read_update(struct pci_nvme_softc *sc, uint8_t opc, argument
1671 switch (opc) {
1693 DPRINTF("%s: Invalid OPC 0x%02x for stats", __func__, opc);
1867 pci_nvme_stats_write_read_update(req->sc, req->opc,
2023 bool is_write = cmd->opc
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h763 UnOpInit(UnaryOp opc, Init *lhs, RecTy *Type) argument
764 : OpInit(IK_UnOpInit, Type, opc), LHS(lhs) {}
774 static UnOpInit *get(UnaryOp opc, Init *lhs, RecTy *Type);
814 BinOpInit(BinaryOp opc, Init *lhs, Init *rhs, RecTy *Type) : argument
815 OpInit(IK_BinOpInit, Type, opc), LHS(lhs), RHS(rhs) {}
825 static BinOpInit *get(BinaryOp opc, Init *lhs, Init *rhs,
870 TernOpInit(TernaryOp opc, Init *lhs, Init *mhs, Init *rhs, argument
872 OpInit(IK_TernOpInit, Type, opc), LHS(lhs), MHS(mhs), RHS(rhs) {}
882 static TernOpInit *get(TernaryOp opc, Init *lhs,
/freebsd-13-stable/sys/dev/ice/
H A Dice_switch.c251 enum ice_adminq_opc opc = ice_aqc_opc_alloc_res; local
271 opc, NULL);
832 * @opc: switch rules population command type - pass in the command opcode
839 enum ice_adminq_opc opc)
868 if (opc == ice_aqc_opc_free_res)
871 status = ice_aq_alloc_free_res(hw, 1, sw_buf, buf_len, opc, NULL);
875 if (opc == ice_aqc_opc_alloc_res) {
953 * @opc: switch rules population command type - pass in the command opcode
960 u8 num_rules, enum ice_adminq_opc opc, struct ice_sq_cd *cd)
967 if (opc !
837 ice_aq_alloc_free_vsi_list(struct ice_hw *hw, u16 *vsi_list_id, enum ice_sw_lkup_type lkup_type, enum ice_adminq_opc opc) argument
959 ice_aq_sw_rules(struct ice_hw *hw, void *rule_list, u16 rule_list_sz, u8 num_rules, enum ice_adminq_opc opc, struct ice_sq_cd *cd) argument
1157 ice_fill_sw_rule(struct ice_hw *hw, struct ice_fltr_info *f_info, struct ice_aqc_sw_rules_elem *s_rule, enum ice_adminq_opc opc) argument
1520 ice_update_vsi_list_rule(struct ice_hw *hw, u16 *vsi_handle_arr, u16 num_vsi, u16 vsi_list_id, bool remove, enum ice_adminq_opc opc, enum ice_sw_lkup_type lkup_type) argument
[all...]
H A Dice_common.h78 enum ice_adminq_opc opc, struct ice_sq_cd *cd);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp3444 Info.opc = ISD::INTRINSIC_W_CHAIN;
3477 Info.opc = ISD::INTRINSIC_W_CHAIN;
3501 Info.opc = ISD::INTRINSIC_W_CHAIN;
3527 Info.opc = ISD::INTRINSIC_W_CHAIN;
3565 Info.opc = ISD::INTRINSIC_W_CHAIN;
3586 Info.opc = ISD::INTRINSIC_W_CHAIN;
3607 Info.opc = ISD::INTRINSIC_W_CHAIN;
3628 Info.opc = ISD::INTRINSIC_W_CHAIN;
3645 Info.opc = ISD::INTRINSIC_W_CHAIN;
3666 Info.opc
[all...]
/freebsd-13-stable/sys/dev/pms/RefTisa/sat/src/
H A Dsmtypes.h162 bit8 opc; member in struct:smAtaPassThroughHdr_s
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp87 unsigned opc, ///< opcode of the second cast constant expression
93 assert(CastInst::isCast(opc) && "Invalid cast opcode");
99 Instruction::CastOps secondOp = Instruction::CastOps(opc);
523 Constant *llvm::ConstantFoldCastInstruction(unsigned opc, Constant *V, argument
529 if (opc == Instruction::ZExt || opc == Instruction::SExt ||
530 opc == Instruction::UIToFP || opc == Instruction::SIToFP)
536 opc != Instruction::AddrSpaceCast)
544 if (unsigned newOpc = foldConstantCastPair(opc, C
86 foldConstantCastPair( unsigned opc, ConstantExpr *Op, Type *DstTy ) argument
[all...]
H A DConstantsContext.h318 CompareConstantExpr(Type *ty, Instruction::OtherOps opc, argument
320 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
H A DInstruction.cpp765 #define HANDLE_INST(num, opc, clas) \
766 case Instruction::opc: \
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp675 BinaryOperator::Opcode opc = symIntExpr->getOpcode(); local
676 switch (opc) {
712 opc = BinaryOperator::negateComparisonOp(opc);
713 return makeNonLoc(symIntExpr->getLHS(), opc,
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-iob-defs.h802 uint64_t opc : 4; /**< Pattern to match on the inbound NCB. */ member in struct:cvmx_iob_inb_control_match::cvmx_iob_inb_control_match_s
808 uint64_t opc : 4;
847 uint64_t opc : 4; /**< Pattern to match on the inbound NCB. */ member in struct:cvmx_iob_inb_control_match_enb::cvmx_iob_inb_control_match_enb_s
853 uint64_t opc : 4;
/freebsd-13-stable/sys/dev/nvme/
H A Dnvme.c92 "opc:%x f:%x cid:%x nsid:%x r2:%x r3:%x mptr:%jx prp1:%jx prp2:%jx cdw:%x %x %x %x %x %x\n",
93 cmd->opc, cmd->fuse, cmd->cid, le32toh(cmd->nsid),
H A Dnvme.h590 uint8_t opc; /* opcode */ member in struct:nvme_command
1517 enum nvme_nvm_opcode opc; member in struct:nvme_io_test
1540 * * opc (opcode)
1710 cmd->opc = NVME_OPC_FLUSH;
1718 cmd->opc = rwcmd;
1743 cmd->opc = NVME_OPC_DATASET_MANAGEMENT;
H A Dnvme_ctrlr.c820 req->cmd.opc = NVME_OPC_ASYNC_EVENT_REQUEST;
1275 req->cmd.opc = pt->cmd.opc;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp1306 unsigned opc = BO->getOpcode(); local
1307 if ((opc == Instruction::Add || opc == Instruction::Sub) &&
/freebsd-13-stable/contrib/wpa/src/eap_peer/
H A Deap_sim.c278 u8 opc[16], k[16]; local
296 if (hexstr2bin(pos, opc, 16))
300 if (gsm_milenage(opc, k, data->rand[i],
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp4469 Opcode opc, QualType ResTy, ExprValueKind VK,
4473 BinaryOperatorBits.Opc = opc;
4486 Opcode opc, QualType ResTy, ExprValueKind VK,
4490 BinaryOperatorBits.Opc = opc;
4511 Expr *rhs, Opcode opc, QualType ResTy,
4520 BinaryOperator(C, lhs, rhs, opc, ResTy, VK, OK, opLoc, FPFeatures);
4533 Opcode opc, QualType ResTy, ExprValueKind VK,
4542 CompoundAssignOperator(C, lhs, rhs, opc, ResTy, VK, OK, opLoc, FPFeatures,
4553 UnaryOperator::UnaryOperator(const ASTContext &Ctx, Expr *input, Opcode opc,
4558 UnaryOperatorBits.Opc = opc;
[all...]
/freebsd-13-stable/sys/dev/bhnd/tools/
H A Dnvram_map_gen.awk786 # opc: The standard opcode for non-IMM encoded data, or null if none
790 function srom_ops_emit_int_opcode(opstream, opc, opc_imm, value, svalue,
804 opc = null
830 opc = null
847 if (opc == null)
860 "("opc"|"SPROM_OP_DATA_I8")", svalue)
865 "("opc"|"SPROM_OP_DATA_U8")", svalue)
870 "("opc"|"SPROM_OP_DATA_U8_SCALED")", svalue / _width)
875 "("opc"|"SPROM_OP_DATA_U16")",
882 "("opc"|"SPROM_OP_DATA_U3
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.h477 bool isHighLatencyDef(int opc) const override;
/freebsd-13-stable/sbin/nvmecontrol/modules/wdc/
H A Dwdc.c144 pt.cmd.opc = opcode;
236 pt.cmd.opc = opcode;

Completed in 396 milliseconds

1234