Home
last modified time | relevance | path

Searched refs:CD (Results 1 – 25 of 353) sorted by relevance

12345678910>>...15

/freebsd/crypto/krb5/src/windows/installer/wix/
H A DMakefile10 CD=cd macro
63 $(CD) custom
65 $(CD) ..
70 $(CD) custom
72 $(CD) ..
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp275 void MangleContext::mangleCtorBlock(const CXXConstructorDecl *CD, in mangleCtorBlock() argument
280 mangleName(GlobalDecl(CD, CT), Out); in mangleCtorBlock()
308 if (const auto *CD = dyn_cast<CXXConstructorDecl>(DC)) in mangleBlock() local
309 mangleCtorBlock(CD, /*CT*/ Ctor_Complete, BD, Out); in mangleBlock()
374 } else if (const auto *CD = in mangleObjCMethodName() local
376 OS << CD->getName(); in mangleObjCMethodName()
496 if (const auto *CD = dyn_cast_or_null<CXXConstructorDecl>(ND)) { in getAllManglings() local
497 Manglings.emplace_back(getMangledStructor(CD, Ctor_Base)); in getAllManglings()
500 if (!CD->getParent()->isAbstract()) in getAllManglings()
501 Manglings.emplace_back(getMangledStructor(CD, Ctor_Complete)); in getAllManglings()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DSafepointIRVerifier.cpp198 const CFGDeadness &CD);
204 CFGDeadness CD; in run() local
205 CD.processFunction(F, DT); in run()
206 Verify(F, DT, CD); in run()
221 CFGDeadness CD; in runOnFunction() local
222 CD.processFunction(F, DT); in runOnFunction()
223 Verify(F, DT, CD); in runOnFunction()
455 const CFGDeadness &CD; member in __anond3efd71a0311::GCPtrTracker
467 const CFGDeadness &CD);
470 return CD.hasLiveIncomingEdge(PN, InBB); in hasLiveIncomingEdge()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dcddb4 # CDDB: file(1) magic for CDDB(tm) format CD text data files
9 # CDDB-enabled CD player applications.
12 0 search/1/w #\040xmcd CDDB(tm) format CD text data
H A Dmodem33 # skip MouseTrap/Mt.Defaults with file size 16 found on Golden Orchard Apple II CD Rom
35 # skip PICTUREH.SML found on Golden Orchard Apple II CD Rom
47 # 16 0-bits near beginning like PicturePuzzler found on Golden Orchard Apple CD Rom
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp77 CoverageData CD = CM.getCoverageForFunction(Function); in get()
78 for (const auto &LCS : getLineCoverageStats(CD)) { in get()
88 sumBranches(NumBranches, CoveredBranches, CD.getBranches()); in get()
89 sumBranchExpansions(NumBranches, CoveredBranches, CM, CD.getExpansions()); in get()
92 std::tie(NumPairs, CoveredPairs) = sumMCDCPairs(CD.getMCDCRecords()); in get()
62 CoverageData CD = CM.getCoverageForFunction(Function); get() local
/freebsd/contrib/googletest/ci/
H A Dwindows-presubmit.bat15 CD git\googletest
17 CD github\googletest
25 CD cmake_msvc2022
43 CD ..
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DUsedDeclVisitor.h110 if (auto *CD = dyn_cast<CapturedDecl>(D)) { in visitUsedDecl() local
111 if (auto *S = CD->getBody()) { in visitUsedDecl()
114 } else if (auto *CD = dyn_cast<BlockDecl>(D)) { in visitUsedDecl() local
115 if (auto *S = CD->getBody()) { in visitUsedDecl()
H A DSemaCUDA.cpp512 bool SemaCUDA::isEmptyConstructor(SourceLocation Loc, CXXConstructorDecl *CD) { in isEmptyConstructor() argument
513 if (!CD->isDefined() && CD->isTemplateInstantiation()) in isEmptyConstructor()
514 SemaRef.InstantiateFunctionDefinition(Loc, CD->getFirstDecl()); in isEmptyConstructor()
519 if (CD->isTrivial()) in isEmptyConstructor()
526 if (!(CD->hasTrivialBody() && CD->getNumParams() == 0)) in isEmptyConstructor()
530 if (CD->getParent()->isDynamicClass()) in isEmptyConstructor()
534 if (CD->getParent()->isUnion()) in isEmptyConstructor()
539 if (!llvm::all_of(CD->inits(), [&](const CXXCtorInitializer *CI) { in isEmptyConstructor()
H A DSemaTemplateDeductionGuide.cpp328 CXXConstructorDecl *CD) { in transformConstructor()
415 FunctionProtoTypeLoc FPTL = CD->getTypeSourceInfo() in transformConstructor()
433 SemaRef, Template, TemplateParams, CD, CD->getExplicitSpecifier(), in transformConstructor()
434 NewTInfo, CD->getBeginLoc(), CD->getLocation(), CD->getEndLoc(), in transformConstructor()
1416 auto *CD = in DeclareImplicitDeductionGuides() local
1420 if (!CD || (!FTD && CD->isFunctionTemplateSpecialization())) in DeclareImplicitDeductionGuides()
1424 if (llvm::any_of(CD->parameters(), [](ParmVarDecl *P) { in DeclareImplicitDeductionGuides()
1430 Transform.transformConstructor(FTD, CD); in DeclareImplicitDeductionGuides()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp94 void VisitObjCContainerDecl(const ObjCContainerDecl *CD,
409 if (auto *CD = dyn_cast<ObjCCategoryDecl>(D->getDeclContext())) in getCategoryContext() local
410 return CD; in getCategoryContext()
429 auto *CD = getCategoryContext(D); in VisitObjCMethodDecl() local
430 VisitObjCContainerDecl(ID, CD); in VisitObjCMethodDecl()
450 const ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D); in VisitObjCContainerDecl() local
451 const ObjCInterfaceDecl *ID = CD->getClassInterface(); in VisitObjCContainerDecl()
462 if (CD->IsClassExtension()) { in VisitObjCContainerDecl()
464 GenLoc(CD, /*IncludeOffset=*/true); in VisitObjCContainerDecl()
467 GenObjCCategory(ID->getName(), CD->getName(), in VisitObjCContainerDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DState.cpp146 if (const auto *CD = in addCallStack() local
148 CD && CD->isInheritingConstructor()) { in addCallStack()
151 << CD->getParent(); in addCallStack()
H A DInterp.cpp601 const auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl); in CheckCallable() local
602 if (CD && CD->isInheritingConstructor()) { in CheckCallable()
603 const auto *Inherited = CD->getInheritedConstructor().getConstructor(); in CheckCallable()
605 DiagDecl = CD = Inherited; in CheckCallable()
611 if (CD && CD->isInheritingConstructor()) { in CheckCallable()
613 << CD->getInheritedConstructor().getConstructor()->getParent(); in CheckCallable()
631 << DiagDecl->isConstexpr() << (bool)CD << DiagDecl; in CheckCallable()
/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected7 69 C4 E0 D8 6A 7B 04 30 D8 CD B7 80 70 B4 C5 5A
15 C4 A8 5A EB 0B 20 41 49 4F 8B F1 F8 CD 30 F1 13
59 E5 E9 11 38 19 01 A9 2D F3 CD 42 27 1F AB 33 AB
84 C4 A8 5A EB 0B 20 41 49 4F 8B F1 F8 CD 30 F1 13
128 E5 E9 11 38 19 01 A9 2D F3 CD 42 27 1F AB 33 AB
145 37 9D EB CD 52 52 3B C5 76 02 7D 35 19 76 05 7D
153 C4 A8 5A EB 0B 20 41 49 4F 8B F1 F8 CD 30 F1 13
202 E5 E9 11 38 19 01 A9 2D F3 CD 42 27 1F AB 33 AB
222 37 9D EB CD 52 52 3B C5 76 02 7D 35 19 76 05 7D
/freebsd/sys/contrib/device-tree/src/arm/rockchip/
H A Drk3288-veyron-sdmmc.dtsi40 * Builtin CD line is hooked to ground to prevent JTAG at boot
42 * Configure gpio6_C6 as GPIO so dw_mmc builtin CD doesn't
49 /* This is where we actually hook up CD */
/freebsd/share/misc/
H A Dscsi_modes350 0x0E "CD-ROM Audio Control Parameters" {
421 {Non CD Optical Device} t1
428 # CD-ROM (and CD-R[W]) devices
429 0x2a "CD capabilities and mechanical status" {
432 {CD-RW Read} t1
433 {CD-R Read} t1
436 {CD-RW Write} t1
437 {CD-R Write} t1
452 {CD-DA Stream is Accurate} t1
453 {CD-DA Commands Supported} t1
/freebsd/crypto/openssl/crypto/md5/asm/
H A Dmd5-sparcv9.pl39 ($AB,$CD)=("%g4","%g5");
334 sllx $C,32,$CD ! pack C,D
338 or $D,$CD,$CD
359 srlx $CD,32,$t2
364 add $CD,$D,$D
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx6qdl-wandboard-revb1.dtsi15 MX6QDL_PAD_GPIO_2__GPIO1_IO02 0x80000000 /* uSDHC1 CD */
16 MX6QDL_PAD_EIM_DA9__GPIO3_IO09 0x80000000 /* uSDHC3 CD */
H A Dimx6ull-dhcom-som-cfg-sdcard.dtsi71 MX6UL_PAD_UART1_RTS_B__GPIO1_IO19 0x120b0 /* SD1 CD */
83 MX6UL_PAD_UART1_RTS_B__GPIO1_IO19 0x120b0 /* SD1 CD */
96 MX6UL_PAD_UART1_RTS_B__GPIO1_IO19 0x120b0 /* SD1 CD */
H A Dimx6qdl-wandboard-revc1.dtsi15 MX6QDL_PAD_GPIO_2__GPIO1_IO02 0x80000000 /* uSDHC1 CD */
16 MX6QDL_PAD_EIM_DA9__GPIO3_IO09 0x80000000 /* uSDHC3 CD */
/freebsd/sys/contrib/device-tree/src/arm/st/
H A Dste-nomadik-s8815.dts41 /* Hog CD pins */
57 /* CD input GPIO */
62 /* CD GPIO biasing */
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h1068 LineCoverageIterator(const CoverageData &CD) in LineCoverageIterator() argument
1069 : LineCoverageIterator(CD, CD.begin()->Line) {} in LineCoverageIterator()
1071 LineCoverageIterator(const CoverageData &CD, unsigned Line) in LineCoverageIterator() argument
1072 : CD(CD), WrappedSegment(nullptr), Next(CD.begin()), Ended(false), in LineCoverageIterator()
1078 return &CD == &R.CD && Next == R.Next && Ended == R.Ended;
1087 EndIt.Next = CD.end(); in getEnd()
1093 const CoverageData &CD;
1104 getLineCoverageStats(const coverage::CoverageData &CD) { in getLineCoverageStats() argument
1105 auto Begin = LineCoverageIterator(CD); in getLineCoverageStats()
/freebsd/sys/contrib/libsodium/test/default/
H A Dwintest.bat9 CD test\default
11 echo "Are you on the right path?" %CD%
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRecursiveSymbolVisitor.h47 bool VisitCXXConstructorDecl(const CXXConstructorDecl *CD) { in VisitCXXConstructorDecl() argument
48 for (const auto *Initializer : CD->inits()) { in VisitCXXConstructorDecl()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallDescription.cpp159 for (const CallDescription &CD : List) in CallDescriptionSet() local
160 Impl.LinearMap.push_back({CD, /*unused*/ true}); in CallDescriptionSet()

12345678910>>...15