| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | IdentifierResolver.cpp | 276 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) { in compareDeclarations() argument 278 if (Existing == New) in compareDeclarations() 282 if (Existing->getKind() != New->getKind()) in compareDeclarations() 286 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) { in compareDeclarations() 289 if (Existing->isFromASTFile() && New->isFromASTFile()) in compareDeclarations() 293 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() 294 if (Existing == MostRecent) in compareDeclarations() 303 if (RD == Existing) in compareDeclarations()
|
| H A D | SemaDeclAttr.cpp | 3242 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>(); in handleWorkGroupSize() local 3243 if (Existing && !(Existing->getXDim() == WGSize[0] && in handleWorkGroupSize() 3244 Existing->getYDim() == WGSize[1] && in handleWorkGroupSize() 3245 Existing->getZDim() == WGSize[2])) in handleWorkGroupSize() 3264 OpenCLIntelReqdSubGroupSizeAttr *Existing = in handleSubGroupSize() local 3266 if (Existing && Existing->getSubGroupSize() != SGSize) in handleSubGroupSize() 3723 MinVectorWidthAttr *Existing = D->getAttr<MinVectorWidthAttr>(); in handleMinVectorWidthAttr() local 3724 if (Existing && Existing->getVectorWidth() != VecWidth) { in handleMinVectorWidthAttr()
|
| H A D | SemaLookup.cpp | 371 const NamedDecl *Existing) { in isPreferredLookupResult() argument 375 !isa<UsingShadowDecl>(Existing)) in isPreferredLookupResult() 379 const auto *EUnderlying = Existing->getUnderlyingDecl(); in isPreferredLookupResult() 451 return !S.isVisible(Existing); in isPreferredLookupResult()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Core/ |
| H A D | Replacement.h | 159 ReplacementError(replacement_error Err, Replacement Existing) in ReplacementError() argument 160 : Err(Err), ExistingReplacement(std::move(Existing)) {} in ReplacementError() 164 ReplacementError(replacement_error Err, Replacement New, Replacement Existing) in ReplacementError() argument 166 ExistingReplacement(std::move(Existing)) {} in ReplacementError()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 221 NamedDecl *Existing = nullptr; member in clang::ASTDeclReader::FindExistingResult 232 : Reader(Reader), New(New), Existing(Existing), AddResult(true), in FindExistingResult() 237 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing), in FindExistingResult() 944 FunctionDecl *Existing = nullptr; in VisitFunctionDecl() local 1125 if (Existing) in VisitFunctionDecl() 1134 RedeclarableResult NewRedecl(Existing ? F(Existing) : nullptr, in VisitFunctionDecl() 2858 if (T *Existing = ExistingRes) in mergeRedeclarable() local 3328 if (!AddResult || Existing) in ~FindExistingResult() 4349 if (Existing && Reader.getOwningModuleFile(Existing) != in add() 4365 } else if (!Existing) { in add() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | BasicBlockSections.cpp | 272 auto *Existing = MF.getFunction().getMetadata(LLVMContext::MD_annotation); in hasInstrProfHashMismatch() local 273 if (Existing) { in hasInstrProfHashMismatch() 274 MDTuple *Tuple = cast<MDTuple>(Existing); in hasInstrProfHashMismatch()
|
| H A D | MachineFunction.cpp | 116 auto *Existing = in setUnsafeStackSize() local 119 if (!Existing || Existing->getNumOperands() != 2) in setUnsafeStackSize() 123 if (auto &N = Existing->getOperand(0)) { in setUnsafeStackSize() 125 if (auto &Op = Existing->getOperand(1)) { in setUnsafeStackSize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopDeletion.cpp | 183 auto Existing = FirstIterValue.find(V); in getValueOnFirstIteration() local 184 if (Existing != FirstIterValue.end()) in getValueOnFirstIteration() 185 return Existing->second; in getValueOnFirstIteration()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclTemplate.cpp | 378 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl() local 379 (void)Existing; in addSpecializationImpl() 380 assert(SETraits::getDecl(Existing)->isCanonicalDecl() && in addSpecializationImpl() 568 ClassTemplatePartialSpecializationDecl *Existing in AddPartialSpecialization() local 570 (void)Existing; in AddPartialSpecialization() 571 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization() 1284 VarTemplatePartialSpecializationDecl *Existing = in AddPartialSpecialization() local 1286 (void)Existing; in AddPartialSpecialization() 1287 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization()
|
| H A D | ASTContext.cpp | 4385 QualType Existing = QualType(FPT, 0); in getFunctionTypeInternal() local 4394 return Existing; in getFunctionTypeInternal() 4399 Canonical = getCanonicalType(Existing); in getFunctionTypeInternal() 4569 if (DependentBitIntType *Existing = in getDependentBitIntType() local 4571 return QualType(Existing, 0); in getDependentBitIntType() 12266 if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos)) in getMSGuidDecl() local 12267 return Existing; in getMSGuidDecl() 12282 if (UnnamedGlobalConstantDecl *Existing = in getUnnamedGlobalConstantDecl() local 12284 return Existing; in getUnnamedGlobalConstantDecl() 12304 if (TemplateParamObjectDecl *Existing = in getTemplateParamObjectDecl() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | ItaniumManglingCanonicalizer.cpp | 109 if (NodeHeader *Existing = Nodes.FindNodeOrInsertPos(ID, InsertPos)) in getOrCreateNode() local 110 return {static_cast<T*>(Existing->getNode()), false}; in getOrCreateNode()
|
| H A D | InstrProfWriter.cpp | 275 memprof::IndexedMemProfRecord &Existing = Result.first->second; in addMemProfRecord() local 276 Existing.merge(Record); in addMemProfRecord()
|
| /freebsd-14.2/crypto/openssl/doc/man7/ |
| H A D | openssl-core_names.h.pod | 17 Existing names are further described in the manuals for OpenSSL's
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCTargetDesc.cpp | 460 auto Existing = ArchSubtarget.find(std::string(STI->getCPU())); in getArchSubtarget() local 461 if (Existing == ArchSubtarget.end()) in getArchSubtarget() 463 return Existing->second.get(); in getArchSubtarget()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DIE.cpp | 147 if (DIEAbbrev *Existing = in uniqueAbbreviation() local 149 Die.setAbbrevNumber(Existing->getNumber()); in uniqueAbbreviation() 150 return *Existing; in uniqueAbbreviation()
|
| /freebsd-14.2/sys/contrib/openzfs/ |
| H A D | RELEASES.md | 13 user space library APIs (libzfs.so). Existing user/kernel interfaces are
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | ModuleMap.cpp | 2041 if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModule)) { in parseModuleDecl() local 2046 bool LoadedFromASTFile = Existing->IsFromModuleFile; in parseModuleDecl() 2048 bool Inferred = Existing->IsInferred; in parseModuleDecl() 2064 bool PartOfFramework = Framework || Existing->isPartOfFramework(); in parseModuleDecl() 2071 SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first; in parseModuleDecl() 2086 if (!Existing->Parent && Map.mayShadowNewModule(Existing)) { in parseModuleDecl() 2087 ShadowingModule = Existing; in parseModuleDecl() 2092 Diags.Report(Existing->DefinitionLoc, diag::note_mmap_prev_definition); in parseModuleDecl()
|
| H A D | Pragma.cpp | 924 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) { in AddPragmaHandler() local 925 InsertNS = Existing->getIfNamespace(); in AddPragmaHandler() 952 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace); in RemovePragmaHandler() local 953 assert(Existing && "Namespace containing handler does not exist!"); in RemovePragmaHandler() 955 NS = Existing->getIfNamespace(); in RemovePragmaHandler()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/dma/ |
| H A D | ste-dma40.txt | 59 Existing signal numbers for the DB8500 ASIC. Unless specified, the signals are
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Metadata.cpp | 1652 if (auto *Existing = getMetadata(LLVMContext::MD_annotation)) { in addAnnotationMetadata() local 1655 auto *Tuple = cast<MDTuple>(Existing); in addAnnotationMetadata() 1682 if (auto *Existing = getMetadata(LLVMContext::MD_annotation)) { in addAnnotationMetadata() local 1683 auto *Tuple = cast<MDTuple>(Existing); in addAnnotationMetadata()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | PGOInstrumentation.cpp | 1258 auto *Existing = F.getMetadata(LLVMContext::MD_annotation); in annotateFunctionWithHashMismatch() local 1259 if (Existing) { in annotateFunctionWithHashMismatch() 1260 MDTuple *Tuple = cast<MDTuple>(Existing); in annotateFunctionWithHashMismatch()
|
| /freebsd-14.2/contrib/googletest/googletest/ |
| H A D | README.md | 57 #### Incorporating Into An Existing CMake Project
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 282 for (const MDOperand &Existing : drop_begin(OrigLoopID->operands())) { in makeFollowupLoopID() local 283 MDNode *Op = cast<MDNode>(Existing.get()); in makeFollowupLoopID()
|
| /freebsd-14.2/ |
| H A D | RELNOTES | 77 loader_conf_files as lua, and execute them in a sandbox. Existing
|
| /freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | libtest.shlib | 351 # $1 Existing filesystem or volume name. Default, $TESTPOOL/$TESTFS 374 # $1 Existing snapshot, $TESTPOOL/$TESTFS@$TESTSNAP is default. 394 # $1 Existing filesystem or volume name. Default, $TESTFS 395 # $2 Existing snapshot name. Default, $TESTSNAP
|