Home
last modified time | relevance | path

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

123

/src/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp328 bool Decoder::opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_0xxxxxxx() argument
330 uint8_t Imm = OC[Offset] & 0x7f; in opcode_0xxxxxxx()
332 OC[Offset], in opcode_0xxxxxxx()
339 bool Decoder::opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_10Lxxxxx() argument
341 unsigned Link = (OC[Offset] & 0x20) >> 5; in opcode_10Lxxxxx()
343 | ((OC[Offset + 0] & 0x1f) << 8) in opcode_10Lxxxxx()
344 | ((OC[Offset + 1] & 0xff) << 0); in opcode_10Lxxxxx()
349 OC[Offset + 0], OC[Offset + 1], in opcode_10Lxxxxx()
358 bool Decoder::opcode_1100xxxx(const uint8_t *OC, unsigned &Offset, in opcode_1100xxxx() argument
362 OC[Offset], OC[Offset] & 0xf); in opcode_1100xxxx()
[all …]
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSmartPtrChecker.cpp65 const auto *OC = dyn_cast<CXXMemberOperatorCall>(&Call); in checkPreCall() local
66 if (!OC) in checkPreCall()
68 const MemRegion *ThisRegion = OC->getCXXThisVal().getAsRegion(); in checkPreCall()
72 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()
/src/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()
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp21 const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, in TargetSubtargetInfo() argument
23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {} in TargetSubtargetInfo()
H A DExpandVectorPredication.cpp258 auto OC = static_cast<Instruction::BinaryOps>(*VPI.getFunctionalOpcode()); in expandPredicationInBinaryOperator() local
259 assert(Instruction::isBinaryOp(OC)); in expandPredicationInBinaryOperator()
267 switch (OC) { in expandPredicationInBinaryOperator()
283 Value *NewBinOp = Builder.CreateBinOp(OC, Op0, Op1, VPI.getName()); in expandPredicationInBinaryOperator()
720 auto OC = VPI.getFunctionalOpcode(); in expandPredication() local
722 if (OC && Instruction::isBinaryOp(*OC)) in expandPredication()
H A DSelectOptimize.cpp1256 if (auto OC = ICost.getValue()) in computeInstCost() local
1257 return std::optional<uint64_t>(*OC); in computeInstCost()
/src/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
/src/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp376 } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(DC)) { in getFunctionName() local
377 if (OC->IsClassExtension()) { in getFunctionName()
378 OS << OC->getClassInterface()->getName(); in getFunctionName()
380 OS << OC->getIdentifier()->getNameStart() << '(' in getFunctionName()
381 << OC->getIdentifier()->getNameStart() << ')'; in getFunctionName()
/src/crypto/openssl/test/recipes/15-test_dsaparam_data/valid/
H A Dp2048_q224_t1864_gind1.pem11 OC+++GU78p2Ys9vtZXKdpGkHxh5ad/PwyAsbk1a7hNFxPBqm8kZt4GPfslz1e2ZA
/src/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h570 const VariableExpression &OC = cast<VariableExpression>(Other); in equals() local
571 return VariableValue == OC.VariableValue; in equals()
607 const ConstantExpression &OC = cast<ConstantExpression>(Other); in equals() local
608 return ConstantValue == OC.ConstantValue; in equals()
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp232 const InstrStage *IS, const unsigned *OC, in MCSubtargetInfo() argument
237 OperandCycles(OC), ForwardingPaths(FP) { in MCSubtargetInfo()
/src/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesWriter.cpp613 for (auto &OC : Contexts) in writeContextBlock() local
614 Generator.insert(OC.first, OC.second.first); in writeContextBlock()
632 for (auto &OC : Contexts) in writeContextBlock() local
633 Generator.insert(OC.second.first, OC.second.second); in writeContextBlock()
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetSubtargetInfo.h71 const unsigned *OC, const unsigned *FP);
/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h102 const unsigned *OC, const unsigned *FP);
/src/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 */
H A Dimx6qdl-gw53xx.dtsi736 MX6QDL_PAD_KEY_COL4__GPIO4_IO14 0x1b0b0 /* OC */
/src/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am64.dtsi79 <0x00 0x70000000 0x00 0x70000000 0x00 0x00200000>, /* OC SRAM */
/src/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 */
/src/crypto/openssl/test/recipes/80-test_policy_tree_data/
H A Dlarge_policy_tree.pem243 gAy7GecLVbQw6eL8k1cGWwLt+wl3sn8he8fA0I+KoFfcOCgtvOF59RMXnjZ1+7OC
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp15734 for (const OffsetOfComponent &OC : Components) { in BuildBuiltinOffsetOf() local
15735 if (OC.isBrackets) { in BuildBuiltinOffsetOf()
15740 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) in BuildBuiltinOffsetOf()
15746 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); in BuildBuiltinOffsetOf()
15760 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); in BuildBuiltinOffsetOf()
15769 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf()
15775 if (RequireCompleteType(OC.LocStart, CurrentType, in BuildBuiltinOffsetOf()
15782 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) in BuildBuiltinOffsetOf()
15801 << SourceRange(Components[0].LocStart, OC.LocEnd) << CurrentType; in BuildBuiltinOffsetOf()
15807 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); in BuildBuiltinOffsetOf()
[all …]

123