| /freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/ |
| HD | SemaExceptionSpec.cpp | 1051 CanThrowResult CT = CT_Cannot; in canVarDeclThrow() local 1056 CT = mergeCanThrow(CT, Self.canThrow(Init)); in canVarDeclThrow() 1063 CT = mergeCanThrow( in canVarDeclThrow() 1064 CT, canCalleeThrow(Self, nullptr, Dtor, VD->getLocation())); in canVarDeclThrow() 1073 CT = mergeCanThrow(CT, canVarDeclThrow(Self, HD)); in canVarDeclThrow() 1075 return CT; in canVarDeclThrow() 1131 CanThrowResult CT = canDynamicCastThrow(CE); in canThrow() local 1132 if (CT == CT_Can) in canThrow() 1133 return CT; in canThrow() 1134 return mergeCanThrow(CT, canSubStmtsThrow(*this, CE)); in canThrow() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/ |
| HD | llvm-cxxdump.cpp | 301 CatchableType CT; in dumpCXXData() local 302 CT.Flags = DataPtr[0]; in dumpCXXData() 303 CT.NonVirtualBaseAdjustmentOffset = DataPtr[2]; in dumpCXXData() 304 CT.VirtualBasePointerOffset = DataPtr[3]; in dumpCXXData() 305 CT.VirtualBaseAdjustmentOffset = DataPtr[4]; in dumpCXXData() 306 CT.Size = DataPtr[5]; in dumpCXXData() 307 StringRef *I = std::begin(CT.Symbols), *E = std::end(CT.Symbols); in dumpCXXData() 309 CTs[SymName] = CT; in dumpCXXData() 436 const CatchableType &CT = CTPair.second; in dumpCXXData() local 439 << "]: " << (CT.Flags & Flag ? "true" : "false") << '\n'; in dumpCXXData() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/ |
| HD | DAGISelMatcher.cpp | 360 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) { in isContradictoryImpl() local 362 if (CT->getResNo() >= getOpcode().getNumResults()) in isContradictoryImpl() 365 MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo()); in isContradictoryImpl() 367 return TypesAreContradictory(NodeType, CT->getType()); in isContradictoryImpl() 374 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) in isContradictoryImpl() local 375 return TypesAreContradictory(getType(), CT->getType()); in isContradictoryImpl()
|
| HD | DAGISelMatcherOpt.cpp | 49 if (CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(MC->getNext())) in ContractNodes() local 51 CT->getResNo() == 0) // CheckChildType checks res #0 in ContractNodes() 52 New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType()); in ContractNodes()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ |
| HD | DebugInfoMetadata.cpp | 418 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier]; in buildODRType() local 419 if (!CT) in buildODRType() 420 return CT = DICompositeType::getDistinct( in buildODRType() 426 assert(CT->getRawIdentifier() == &Identifier && "Wrong ODR identifier?"); in buildODRType() 427 if (!CT->isForwardDecl() || (Flags & DINode::FlagFwdDecl)) in buildODRType() 428 return CT; in buildODRType() 431 CT->mutate(Tag, Line, RuntimeLang, SizeInBits, AlignInBits, OffsetInBits, in buildODRType() 436 assert((std::end(Ops) - std::begin(Ops)) == (int)CT->getNumOperands() && in buildODRType() 438 for (unsigned I = 0, E = CT->getNumOperands(); I != E; ++I) in buildODRType() 439 if (Ops[I] != CT->getOperand(I)) in buildODRType() [all …]
|
| HD | LLVMContextImpl.h | 453 if (auto *CT = dyn_cast_or_null<DICompositeType>(Scope)) 454 if (CT->getRawIdentifier()) 485 auto *CT = dyn_cast_or_null<DICompositeType>(Scope); 486 if (!CT || !CT->getRawIdentifier()) 676 if (auto *CT = dyn_cast_or_null<DICompositeType>(Scope)) 677 if (CT->getRawIdentifier()) 712 auto *CT = dyn_cast_or_null<DICompositeType>(Scope); 713 if (!CT || !CT->getRawIdentifier())
|
| /freebsd-11-stable/share/syscons/fonts/ |
| HD | iso-thin-8x16.fnt | 82 M."0B(B(D."`@(```````'B$A(3XA(2$^("`@````$`@$`#Q"`CY"0CT````` 83 M``0($``\0@(^0D(]```````0*$0`/$("/D)"/0```````#),`#Q"`CY"0CT` 92 M0D)"0D)"/0``````&"1"`$)"0D)"0CT````````D)`!"0D)"0D(]````````
|
| HD | iso15-thin-8x16.fnt | 82 M(#XA(2$Q+B`@("``````'B$A(3XA(2$Q+B``````$`@$`#Q"`CY"0CT````` 83 M``0($``\0@(^0D(]```````0*$0`/$("/D)"/0```````#),`#Q"`CY"0CT` 92 M0D)"0D)"/0``````&"1"`$)"0D)"0CT````````D)`!"0D)"0D(]````````
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | ModuleDebugInfoPrinter.cpp | 122 if (auto *CT = dyn_cast<DICompositeType>(T)) { in print() local 123 if (auto *S = CT->getRawIdentifier()) in print()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| HD | MetadataLoader.cpp | 190 void addTypeRef(MDString &UUID, DICompositeType &CT); 280 if (DICompositeType *CT = OldTypeRefs.Final.lookup(Ref.first)) in tryToResolveCycles() local 281 Ref.second->replaceAllUsesWith(CT); in tryToResolveCycles() 307 DICompositeType &CT) { in addTypeRef() argument 308 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID"); in addTypeRef() 309 if (CT.isForwardDecl()) in addTypeRef() 310 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT)); in addTypeRef() 312 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT)); in addTypeRef() 320 if (auto *CT = OldTypeRefs.Final.lookup(UUID)) in upgradeTypeRef() local 321 return CT; in upgradeTypeRef() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| HD | CheckerManager.cpp | 727 for (const auto &CT : CheckerTags) { in runCheckersForPrintStateJson() local 729 CT.second->printState(TempOut, State, /*NL=*/NewLine.c_str(), /*Sep=*/""); in runCheckersForPrintStateJson() 739 LastCT = &CT; in runCheckersForPrintStateJson() 743 for (const auto &CT : CheckerTags) { in runCheckersForPrintStateJson() local 745 CT.second->printState(TempOut, State, /*NL=*/NewLine.c_str(), /*Sep=*/""); in runCheckersForPrintStateJson() 751 << "{ \"checker\": \"" << CT.second->getCheckerName().getName() in runCheckersForPrintStateJson() 757 if (&CT != LastCT) in runCheckersForPrintStateJson()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | ExprClassification.cpp | 636 CanQualType CT = Ctx.getCanonicalType(E->getType()); in IsModifiable() local 638 if (CT.isConstQualified()) in IsModifiable() 641 CT.getQualifiers().getAddressSpace() == LangAS::opencl_constant) in IsModifiable() 645 if (CT->isArrayType()) in IsModifiable() 648 if (CT->isIncompleteType()) in IsModifiable() 652 if (const RecordType *R = CT->getAs<RecordType>()) in IsModifiable()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| HD | StraightLineStrengthReduce.cpp | 111 Candidate(Kind CT, const SCEV *B, ConstantInt *Idx, Value *S, in Candidate() 113 : CandidateKind(CT), Base(B), Index(Idx), Stride(S), Ins(I) {} in Candidate() 211 void allocateCandidatesAndFindBasis(Candidate::Kind CT, const SCEV *B, 337 Candidate::Kind CT, const SCEV *B, ConstantInt *Idx, Value *S, in allocateCandidatesAndFindBasis() argument 339 Candidate C(CT, B, Idx, S, I); in allocateCandidatesAndFindBasis()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| HD | AMDGPURewriteOutArguments.cpp | 403 if (StructType *CT = dyn_cast<StructType>(EltTy)) { in runOnFunction() local 404 assert(CT->getNumElements() == 1); in runOnFunction() 405 EffectiveEltTy = CT->getElementType(0); in runOnFunction()
|
| /freebsd-11-stable/tools/kerneldoc/subsys/ |
| HD | Doxyfile-dev_ct | 8 PROJECT_NAME = "FreeBSD kernel CT device code"
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ |
| HD | Mangle.h | 121 void mangleCtorBlock(const CXXConstructorDecl *CD, CXXCtorType CT, 222 CXXCtorType CT, uint32_t Size,
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| HD | Analysis.cpp | 440 CompositeType *CT = cast<CompositeType>(DeeperType); in advanceToNextLeafType() local 441 if (!indexReallyValid(CT, 0)) in advanceToNextLeafType() 444 SubTypes.push_back(CT); in advanceToNextLeafType() 447 DeeperType = CT->getTypeAtIndex(0U); in advanceToNextLeafType()
|
| /freebsd-11-stable/sys/gnu/dts/arm/ |
| HD | omap5-uevm.dts | 50 gpios = <&gpio9 0 GPIO_ACTIVE_HIGH>, /* TCA6424A P01, CT CP HPD */
|
| /freebsd-11-stable/contrib/file/magic/Magdir/ |
| HD | editors | 6 0 string @CT\ T602 document data,
|
| /freebsd-11-stable/contrib/groff/tmac/ |
| HD | TODO | 26 Implement thesis Mode (TM, CT).
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/CrossTU/ |
| HD | CrossTranslationUnit.cpp | 170 CanQualType CT = ACtx.getCanonicalType(VD->getType()); in containsConst() local 171 if (!CT.isConstQualified()) { in containsConst() 172 const RecordType *RTy = CT->getAs<RecordType>(); in containsConst()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| HD | ValueMapper.cpp | 541 auto *CT = dyn_cast<DICompositeType>(&N); in cloneOrBuildODR() local 544 if (CT && CT->getContext().isODRUniquingDebugTypes() && in cloneOrBuildODR() 545 CT->getIdentifier() != "") in cloneOrBuildODR() 546 return const_cast<DICompositeType *>(CT); in cloneOrBuildODR()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/ |
| HD | Program.cpp | 358 if (auto *CT = Ty->getAs<ComplexType>()) { in createDescriptor() local 359 PrimType ElemTy = *Ctx.classify(CT->getElementType()); in createDescriptor()
|
| /freebsd-11-stable/libexec/getty/ |
| HD | main.c | 246 if (getty_chat(IC, CT, DC) > 0) { in main() 269 i = getty_chat(AC, CT, DC); in main()
|
| HD | gettytab.h | 139 #define CT gettynums[27].value macro
|