Home
last modified time | relevance | path

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

1234567

/external/llvm-project/llvm/tools/llvm-readobj/
DARMWinEHPrinter.cpp256 bool Decoder::opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_0xxxxxxx() argument
258 uint8_t Imm = OC[Offset] & 0x7f; in opcode_0xxxxxxx()
260 OC[Offset], in opcode_0xxxxxxx()
267 bool Decoder::opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_10Lxxxxx() argument
269 unsigned Link = (OC[Offset] & 0x20) >> 5; in opcode_10Lxxxxx()
271 | ((OC[Offset + 0] & 0x1f) << 8) in opcode_10Lxxxxx()
272 | ((OC[Offset + 1] & 0xff) << 0); in opcode_10Lxxxxx()
277 OC[Offset + 0], OC[Offset + 1], in opcode_10Lxxxxx()
286 bool Decoder::opcode_1100xxxx(const uint8_t *OC, unsigned &Offset, in opcode_1100xxxx() argument
290 OC[Offset], OC[Offset] & 0xf); in opcode_1100xxxx()
[all …]
/external/llvm/tools/llvm-readobj/
DARMWinEHPrinter.cpp227 bool Decoder::opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_0xxxxxxx() argument
229 uint8_t Imm = OC[Offset] & 0x7f; in opcode_0xxxxxxx()
231 OC[Offset], in opcode_0xxxxxxx()
238 bool Decoder::opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset, in opcode_10Lxxxxx() argument
240 unsigned Link = (OC[Offset] & 0x20) >> 5; in opcode_10Lxxxxx()
242 | ((OC[Offset + 0] & 0x1f) << 8) in opcode_10Lxxxxx()
243 | ((OC[Offset + 1] & 0xff) << 0); in opcode_10Lxxxxx()
248 OC[Offset + 0], OC[Offset + 1], in opcode_10Lxxxxx()
257 bool Decoder::opcode_1100xxxx(const uint8_t *OC, unsigned &Offset, in opcode_1100xxxx() argument
261 OC[Offset], OC[Offset] & 0xf); in opcode_1100xxxx()
[all …]
/external/llvm-project/libcxx/test/std/experimental/memory/memory.resource.aliases/
Dheader_set_synop.pass.cpp38 using OC = std::greater<V>; in main() typedef
45 using StdSet = std::set<V, OC, pmr::polymorphic_allocator<V>>; in main()
46 using PmrSet = pmr::set<V, OC>; in main()
59 using StdSet = std::multiset<V, OC, pmr::polymorphic_allocator<V>>; in main()
60 using PmrSet = pmr::multiset<V, OC>; in main()
Dheader_map_synop.pass.cpp39 using OC = std::greater<int>; in main() typedef
47 using StdMap = std::map<K, V, OC, pmr::polymorphic_allocator<P>>; in main()
48 using PmrMap = pmr::map<K, V, OC>; in main()
61 using StdMap = std::multimap<K, V, OC, pmr::polymorphic_allocator<P>>; in main()
62 using PmrMap = pmr::multimap<K, V, OC>; in main()
/external/libcxx/test/std/experimental/memory/memory.resource.aliases/
Dheader_set_synop.pass.cpp38 using OC = std::greater<V>; in main() typedef
45 using StdSet = std::set<V, OC, pmr::polymorphic_allocator<V>>; in main()
46 using PmrSet = pmr::set<V, OC>; in main()
59 using StdSet = std::multiset<V, OC, pmr::polymorphic_allocator<V>>; in main()
60 using PmrSet = pmr::multiset<V, OC>; in main()
Dheader_map_synop.pass.cpp39 using OC = std::greater<int>; in main() typedef
47 using StdMap = std::map<K, V, OC, pmr::polymorphic_allocator<P>>; in main()
48 using PmrMap = pmr::map<K, V, OC>; in main()
61 using StdMap = std::multimap<K, V, OC, pmr::polymorphic_allocator<P>>; in main()
62 using PmrMap = pmr::multimap<K, V, OC>; in main()
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DAssertSideEffectCheck.cpp32 UnaryOperator::Opcode OC = Op->getOpcode(); in AST_MATCHER_P() local
33 return OC == UO_PostInc || OC == UO_PostDec || OC == UO_PreInc || in AST_MATCHER_P()
34 OC == UO_PreDec; in AST_MATCHER_P()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
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()
/external/opencensus-java/exporters/trace/ocagent/
DREADME.md1 # OpenCensus Java OC-Agent Trace Exporter
3 The *OpenCensus Java OC-Agent Trace Exporter* is the Java implementation of the OpenCensus Agent
4 (OC-Agent) Trace Exporter.
/external/llvm-project/llvm/unittests/IR/
DVPIntrinsicTest.cpp141 for (unsigned OC : Opcodes) { in TEST_F() local
142 Intrinsic::ID VPID = VPIntrinsic::GetForOpcode(OC); in TEST_F()
152 ASSERT_EQ(RoundTripOC, OC); in TEST_F()
/external/eigen/test/
Dproduct_small.cpp43 template<typename T, int Rows, int Cols, int Depth, int OC, int OA, int OB>
48 || (Rows ==1&&Cols !=1&&OC==ColMajor)
49 || (Cols ==1&&Rows !=1&&OC==RowMajor)),void>::type
54 Matrix<T,Rows,Cols,OC> C(rows,cols); C.setRandom(); in test_lazy_single()
55 Matrix<T,Rows,Cols,OC> D(C); in test_lazy_single()
59 template<typename T, int Rows, int Cols, int Depth, int OC, int OA, int OB>
64 || (Rows ==1&&Cols !=1&&OC==ColMajor)
65 || (Cols ==1&&Rows !=1&&OC==RowMajor)),void>::type
/external/llvm/lib/Target/
DTargetSubtargetInfo.cpp25 const InstrStage *IS, const unsigned *OC, const unsigned *FP) in TargetSubtargetInfo() argument
26 : MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetSubtargetInfo.cpp22 const InstrStage *IS, const unsigned *OC, const unsigned *FP) in TargetSubtargetInfo() argument
23 : MCSubtargetInfo(TT, CPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
/external/llvm-project/llvm/lib/CodeGen/
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()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/Utils/
DLocal.h69 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntIdxTy, true /*SExt*/);
71 ConstantExpr::getMul(OC, Scale, false /*NUW*/, isInBounds /*NSW*/);
/external/llvm-project/llvm/include/llvm/Analysis/Utils/
DLocal.h69 Constant *OC =
72 ConstantExpr::getMul(OC, Scale, false /*NUW*/, isInBounds /*NSW*/);
/external/oss-fuzz/projects/libphonenumber/
Dbuild.sh22 export OC=$CFLAGS
61 export CFLAGS=$OC
/external/llvm/lib/MC/
DMCSubtargetInfo.cpp44 const InstrStage *IS, const unsigned *OC, const unsigned *FP) in MCSubtargetInfo() argument
47 ReadAdvanceTable(RA), Stages(IS), OperandCycles(OC), ForwardingPaths(FP) { in MCSubtargetInfo()
/external/arm-trusted-firmware/lib/romlib/
DMakefile10 OC = $(CROSS_COMPILE)objcopy macro
67 $(Q)$(OC) -O binary $(BUILD_DIR)/romlib.elf $@
/external/tcpdump/tests/
Dnsh-over-vxlan-gpe.out1 IP 127.0.0.1.4790 > 127.0.0.1.4790: VXLAN-GPE, flags [IP], vni 16777215: NSH, flags [OC], service-p…
Dnsh-over-vxlan-gpe-v.out3 NSH, flags [OC], service-path-id 0xffffff, service-index 0xff
/external/arm-trusted-firmware/plat/rockchip/rk3399/drivers/m0/
DMakefile45 OC := ${M0_CROSS_COMPILE}objcopy macro
117 $(Q)$(OC) -O binary $< $@
/external/llvm-project/clang/lib/StaticAnalyzer/Frontend/
DAnalysisConsumer.cpp598 } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(DC)) { in getFunctionName() local
599 if (OC->IsClassExtension()) { in getFunctionName()
600 OS << OC->getClassInterface()->getName(); in getFunctionName()
602 OS << OC->getIdentifier()->getNameStart() << '(' in getFunctionName()
603 << OC->getIdentifier()->getNameStart() << ')'; in getFunctionName()
/external/clang/test/Layout/
Dms-x86-pack-and-align.cpp583 struct OC : virtual OA, virtual OB {}; struct
585 struct OD : OC {};
/external/llvm-project/clang/test/Layout/
Dms-x86-pack-and-align.cpp583 struct OC : virtual OA, virtual OB {}; struct
585 struct OD : OC {};

1234567