Home
last modified time | relevance | path

Searched refs:CRD (Results 1 – 25 of 35) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DInstruction.cpp23 CRD.IID = IID; in writeStartEvent()
24 CRD.RegID = RegID; in writeStartEvent()
25 CRD.Cycles = Cycles; in writeStartEvent()
42 CRD.IID = IID; in writeStartEvent()
43 CRD.RegID = RegID; in writeStartEvent()
44 CRD.Cycles = Cycles; in writeStartEvent()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIterator.cpp23 const auto *CRD = Type->getUnqualifiedDesugaredType()->getAsCXXRecordDecl(); in isIteratorType() local
24 return isIterator(CRD); in isIteratorType()
27 bool isIterator(const CXXRecordDecl *CRD) { in isIterator() argument
28 if (!CRD) in isIterator()
31 const auto Name = CRD->getName(); in isIterator()
38 for (const auto *Method : CRD->methods()) { in isIterator()
H A DContainerModeling.cpp790 const auto *CRD = getCXXRecordDecl(State, Reg); in hasSubscriptOperator() local
791 if (!CRD) in hasSubscriptOperator()
794 for (const auto *Method : CRD->methods()) { in hasSubscriptOperator()
806 const auto *CRD = getCXXRecordDecl(State, Reg); in frontModifiable() local
807 if (!CRD) in frontModifiable()
810 for (const auto *Method : CRD->methods()) { in frontModifiable()
821 const auto *CRD = getCXXRecordDecl(State, Reg); in backModifiable() local
822 if (!CRD) in backModifiable()
825 for (const auto *Method : CRD->methods()) { in backModifiable()
H A DIterator.h144 bool isIterator(const CXXRecordDecl *CRD);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp544 if (const auto *CRD = dyn_cast<CXXRecordDecl>(AggregateType)) in getNumParams() local
545 Count += CRD->getNumBases(); in getNumParams()
559 if (const auto *CRD = dyn_cast<CXXRecordDecl>(AggregateType)) { in getParamType() local
560 if (N < CRD->getNumBases()) in getParamType()
561 return std::next(CRD->bases_begin(), N)->getType(); in getParamType()
562 N -= CRD->getNumBases(); in getParamType()
588 if (const auto *CRD = dyn_cast<CXXRecordDecl>(AggregateType)) { in getParamDecl() local
589 if (N < CRD->getNumBases()) in getParamDecl()
590 return std::next(CRD->bases_begin(), N)->getType()->getAsTagDecl(); in getParamDecl()
591 N -= CRD->getNumBases(); in getParamDecl()
H A DSemaAttr.cpp250 const auto *CRD = CMD->getParent(); in inferLifetimeBoundAttribute() local
251 if (!CRD->isInStdNamespace() || !CRD->getIdentifier()) in inferLifetimeBoundAttribute()
258 if (CRD->getName() == "basic_string_view" && in inferLifetimeBoundAttribute()
265 } else if (CRD->getName() == "span") { in inferLifetimeBoundAttribute()
322 void Sema::inferNullableClassAttribute(CXXRecordDecl *CRD) { in inferNullableClassAttribute() argument
328 if (CRD->isInStdNamespace() && Nullable.count(CRD->getName()) && in inferNullableClassAttribute()
329 !CRD->hasAttr<TypeNullableAttr>()) in inferNullableClassAttribute()
330 for (Decl *Redecl : CRD->redecls()) in inferNullableClassAttribute()
H A DSemaCodeComplete.cpp3997 if (auto *CRD = llvm::dyn_cast<CXXRecordDecl>(RD)) { in AddOverloadAggregateChunks() local
3998 for (const auto &Base : CRD->bases()) in AddOverloadAggregateChunks()
6514 CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD); in ProduceConstructorSignatureHelp() local
6523 (!getLangOpts().CPlusPlus || (CRD && CRD->isAggregate()))) { in ProduceConstructorSignatureHelp()
6545 if (CRD) { in ProduceConstructorSignatureHelp()
6548 for (NamedDecl *C : SemaRef.LookupConstructors(CRD)) { in ProduceConstructorSignatureHelp()
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsc7280-herobrine-crd-pro.dts3 * sc7280 CRD 3+ Pro board device tree source
12 model = "Qualcomm Technologies, Inc. sc7280 CRD Pro platform (rev5+)";
H A Dsc7280-herobrine-crd.dts3 * sc7280 CRD 3+ board device tree source
15 model = "Qualcomm Technologies, Inc. sc7280 CRD platform (rev5+)";
22 * However, on CRD there's an extra regulator in the way. Since this
154 * - If a pin goes to CRD board and is named it gets that name.
155 * - If a pin goes to CRD board and is not named, it gets no name.
H A Dsc7280-crd.dts3 * sc7280 CRD board device tree source
14 model = "Qualcomm Technologies, Inc. sc7280 CRD platform";
H A Dsc7280-crd-r3.dts3 * sc7280 CRD board device tree source
14 model = "Qualcomm Technologies, Inc. sc7280 CRD platform (rev3 - 4)";
H A Dx1p42100-crd.dts15 model = "Qualcomm Technologies, Inc. X1P42100 CRD";
H A Dx1e80100-crd.dts12 model = "Qualcomm Technologies, Inc. X1E80100 CRD";
H A Dsc7280-idp-ec-h1.dtsi3 * sc7280 EC/H1 over SPI (common between IDP2 and CRD)
H A Dx1-crd.dtsi15 model = "Qualcomm Technologies, Inc. X1E80100 CRD";
208 model = "X1E80100-CRD";
H A Dx1e80100-asus-vivobook-s15.dts163 * card and not the CRD mainboard. Need to describe this differently.
H A Dsc8280xp-crd.dts16 model = "Qualcomm SC8280XP CRD";
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h238 CriticalDependency CRD; variable
254 DependentWriteCyclesLeft(0), CRD() {}
269 const CriticalDependency &getCriticalRegDep() const { return CRD; } in getCriticalRegDep()
347 CriticalDependency CRD; variable
359 CyclesLeft(UNKNOWN_CYCLES), TotalCycles(0), CRD(), IsReady(true), in ReadState()
366 const CriticalDependency &getCriticalRegDep() const { return CRD; } in getCriticalRegDep()
/freebsd/sys/dev/xdma/controller/
H A Dpl330.h74 #define CRD 0xE14 /* DMA Configuration */ macro
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.td2636 def CRAND : XLForm_1<19, 257, (outs crbitrc:$CRD),
2638 "crand $CRD, $CRA, $CRB", IIC_BrCR,
2639 [(set i1:$CRD, (and i1:$CRA, i1:$CRB))]>;
2641 def CRNAND : XLForm_1<19, 225, (outs crbitrc:$CRD),
2643 "crnand $CRD, $CRA, $CRB", IIC_BrCR,
2644 [(set i1:$CRD, (not (and i1:$CRA, i1:$CRB)))]>;
2646 def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
2648 "cror $CRD, $CRA, $CRB", IIC_BrCR,
2649 [(set i1:$CRD, (or i1:$CRA, i1:$CRB))]>;
2651 def CRXOR : XLForm_1<19, 193, (outs crbitrc:$CRD),
[all …]
H A DPPCInstrFormats.td1486 bits<5> CRD;
1492 let Inst{6-10} = CRD;
1509 let CRD = 0;
1520 let CRD = RT;
1528 bits<5> CRD;
1532 let Inst{6-10} = CRD;
1533 let Inst{11-15} = CRD;
1534 let Inst{16-20} = CRD;
H A DPPCSchedule440.td84 // uncommitted lwarx/stwcx. is in AGEN, CRD, or LWB.
87 // resources are empty. AGEN and CRD are held empty until the msync/mbar
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp810 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { in ConvertRecordDeclType() local
811 for (const auto &I : CRD->bases()) { in ConvertRecordDeclType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp413 if (const auto *CRD = dyn_cast<CXXRecordDecl>(LDC)) in isInLocalScopeForInstantiation() local
414 if (CRD->isLambda()) in isInLocalScopeForInstantiation()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp2891 if (const auto *CRD = dyn_cast<CXXRecordDecl>(RD)) { in bindStruct() local
2899 assert((CRD->isAggregate() || (Ctx.getLangOpts().ObjC && VI == VE)) && in bindStruct()
2902 for (const auto &B : CRD->bases()) { in bindStruct()

12