Home
last modified time | relevance | path

Searched refs:OC (Results 1 – 25 of 53) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp329 bool Decoder::opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_0xxxxxxx() argument
331 uint8_t Imm = OC[Offset] & 0x7f; in opcode_0xxxxxxx()
333 OC[Offset], in opcode_0xxxxxxx()
340 bool Decoder::opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_10Lxxxxx() argument
342 unsigned Link = (OC[Offset] & 0x20) >> 5; in opcode_10Lxxxxx()
344 | ((OC[Offset + 0] & 0x1f) << 8) in opcode_10Lxxxxx()
345 | ((OC[Offset + 1] & 0xff) << 0); in opcode_10Lxxxxx()
350 OC[Offset + 0], OC[Offset + 1], in opcode_10Lxxxxx()
359 bool Decoder::opcode_1100xxxx(const uint8_t *OC, unsigned &Offset, in opcode_1100xxxx() argument
363 OC[Offset], OC[Offset] & 0xf); in opcode_1100xxxx()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSmartPtrChecker.cpp61 const auto *OC = dyn_cast<CXXMemberOperatorCall>(&Call); in checkPreCall() local
62 if (!OC) in checkPreCall()
64 const MemRegion *ThisRegion = OC->getCXXThisVal().getAsRegion(); in checkPreCall()
68 OverloadedOperatorKind OOK = OC->getOverloadedOperator(); in checkPreCall()
H A DSmartPtrModeling.cpp735 const auto *OC = dyn_cast<CXXMemberOperatorCall>(&Call); in handleAssignOp() local
736 if (!OC) in handleAssignOp()
738 OverloadedOperatorKind OOK = OC->getOverloadedOperator(); in handleAssignOp()
741 const MemRegion *ThisRegion = OC->getCXXThisVal().getAsRegion(); in handleAssignOp()
747 const MemRegion *OtherSmartPtrRegion = OC->getArgSVal(0).getAsRegion(); in handleAssignOp()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVECustomDAG.h156 SDValue getNode(unsigned OC, SDVTList VTL, ArrayRef<SDValue> OpV,
158 auto N = DAG.getNode(OC, DL, VTL, OpV);
164 SDValue getNode(unsigned OC, ArrayRef<EVT> ResVT, ArrayRef<SDValue> OpV,
166 auto N = DAG.getNode(OC, DL, ResVT, OpV);
172 SDValue getNode(unsigned OC, EVT ResVT, ArrayRef<SDValue> OpV,
174 auto N = DAG.getNode(OC, DL, ResVT, OpV);
H A DVECustomDAG.cpp244 unsigned OC = Op->getOpcode(); in getIdiomaticVectorType() local
250 switch (OC) { in getIdiomaticVectorType()
262 unsigned OriginalOC = OC; in getIdiomaticVectorType()
263 if (auto VVPOpc = getVVPOpcode(OC)) in getIdiomaticVectorType()
264 OC = *VVPOpc; in getIdiomaticVectorType()
266 if (isVVPReductionOp(OC)) in getIdiomaticVectorType()
270 switch (OC) { in getIdiomaticVectorType()
485 unsigned OC = in getUnpack() local
487 return DAG.getNode(OC, DL, DestVT, Vec, AVL); in getUnpack()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp22 const InstrStage *IS, const unsigned *OC, const unsigned *FP) in TargetSubtargetInfo() argument
23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PN, PF, PD, WPR, WL, RA, IS, OC, in TargetSubtargetInfo()
H A DExpandVectorPredication.cpp236 auto OC = static_cast<Instruction::BinaryOps>(*VPI.getFunctionalOpcode()); in expandPredicationInBinaryOperator() local
237 assert(Instruction::isBinaryOp(OC)); in expandPredicationInBinaryOperator()
245 switch (OC) { in expandPredicationInBinaryOperator()
261 Value *NewBinOp = Builder.CreateBinOp(OC, Op0, Op1, VPI.getName()); in expandPredicationInBinaryOperator()
559 auto OC = VPI.getFunctionalOpcode(); in expandPredication() local
561 if (OC && Instruction::isBinaryOp(*OC)) in expandPredication()
/freebsd/sys/contrib/device-tree/Bindings/thermal/
H A Dnvidia,tegra124-soctherm.txt71 - nvidia,count-threshold: Specifies the number of OC events that are
73 the property is missing. A value of 0 will interrupt on every OC alarm.
74 - nvidia,polarity-active-low: Configures the polarity of the OC alaram
77 expires (which means the OC event has not occurred for a long time),
80 throttling is engaged after the OC event is deasserted. Default value
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp289 auto &OC = OrderedComments[CommentFile]; in addComment() local
290 if (OC.empty()) { in addComment()
291 OC[CommentOffset] = new (Allocator) RawComment(RC); in addComment()
295 const RawComment &C1 = *OC.rbegin()->second; in addComment()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp374 } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(DC)) { in getFunctionName() local
375 if (OC->IsClassExtension()) { in getFunctionName()
376 OS << OC->getClassInterface()->getName(); in getFunctionName()
378 OS << OC->getIdentifier()->getNameStart() << '(' in getFunctionName()
379 << OC->getIdentifier()->getNameStart() << ')'; in getFunctionName()
/freebsd/crypto/openssl/test/recipes/15-test_dsaparam_data/valid/
H A Dp2048_q224_t1864_gind1.pem11 OC+++GU78p2Ys9vtZXKdpGkHxh5ad/PwyAsbk1a7hNFxPBqm8kZt4GPfslz1e2ZA
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h576 const VariableExpression &OC = cast<VariableExpression>(Other); in equals() local
577 return VariableValue == OC.VariableValue; in equals()
613 const ConstantExpression &OC = cast<ConstantExpression>(Other); in equals() local
614 return ConstantValue == OC.ConstantValue; in equals()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp254 const InstrStage *IS, const unsigned *OC, const unsigned *FP) in MCSubtargetInfo() argument
258 OperandCycles(OC), ForwardingPaths(FP) { in MCSubtargetInfo()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetSubtargetInfo.h73 const unsigned *OC, const unsigned *FP);
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesWriter.cpp612 for (auto &OC : Contexts) in writeContextBlock() local
613 Generator.insert(OC.first, OC.second.first); in writeContextBlock()
631 for (auto &OC : Contexts) in writeContextBlock() local
632 Generator.insert(OC.second.first, OC.second.second); in writeContextBlock()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h105 const unsigned *OC, const unsigned *FP);
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx53-tx53.dtsi462 MX53_PAD_EIM_D30__GPIO3_30 0x100 /* OC */
475 MX53_PAD_GPIO_8__GPIO1_8 0x100 /* OC */
H A Dimx6q-evi.dts484 /* usbh1_b OC */
H A Dimx6qdl-gw5903.dtsi637 MX6QDL_PAD_KEY_COL4__GPIO4_IO14 0x1b0b0 /* OC */
/freebsd/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am64.dtsi79 <0x00 0x70000000 0x00 0x70000000 0x00 0x00200000>, /* OC SRAM */
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.cpp1714 uint32_t OC = IsVec ? SPIRV::OpDot : SPIRV::OpFMulS; in generateDotOrFMulInst() local
1726 OC = IntDot->Opcode; in generateDotOrFMulInst()
1739 OC = SPIRV::OpSDot; in generateDotOrFMulInst()
1741 OC = SPIRV::OpUDot; in generateDotOrFMulInst()
1743 OC = SPIRV::OpSUDot; in generateDotOrFMulInst()
1749 OC = SPIRV::OpSDotAccSat; in generateDotOrFMulInst()
1751 OC = SPIRV::OpUDotAccSat; in generateDotOrFMulInst()
1753 OC = SPIRV::OpSUDotAccSat; in generateDotOrFMulInst()
1761 MachineInstrBuilder MIB = MIRBuilder.buildInstr(OC) in generateDotOrFMulInst()
1778 if (!IsVec && OC != SPIRV::OpFMulS) in generateDotOrFMulInst()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx8mp-dhcom-drc02.dts225 /* USB_HOST port has USB Hub connected to it, PWR/OC pins are unused */
H A Dimx8mp-dhcom-pdk3.dts329 /* This port has USB5734 Hub connected to it, PWR/OC pins are unused */
/freebsd/crypto/openssl/test/recipes/80-test_policy_tree_data/
H A Dlarge_policy_tree.pem243 gAy7GecLVbQw6eL8k1cGWwLt+wl3sn8he8fA0I+KoFfcOCgtvOF59RMXnjZ1+7OC
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp16100 for (const OffsetOfComponent &OC : Components) { in BuildBuiltinOffsetOf() local
16101 if (OC.isBrackets) { in BuildBuiltinOffsetOf()
16106 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) in BuildBuiltinOffsetOf()
16112 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); in BuildBuiltinOffsetOf()
16126 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); in BuildBuiltinOffsetOf()
16135 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf()
16141 if (RequireCompleteType(OC.LocStart, CurrentType, in BuildBuiltinOffsetOf()
16148 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) in BuildBuiltinOffsetOf()
16167 << SourceRange(Components[0].LocStart, OC.LocEnd) << CurrentType; in BuildBuiltinOffsetOf()
16173 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); in BuildBuiltinOffsetOf()
[all …]

123