| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfFile.cpp | 109 auto Cached = ScopeVars.Args.find(ArgNum); in addScopeVariable() local 110 if (Cached == ScopeVars.Args.end()) in addScopeVariable() 113 Cached->second->addMMIEntry(*Var); in addScopeVariable()
|
| /openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConstraintManager.h | 337 auto I = Cached.find(hash); in REGISTER_TRAIT_WITH_PROGRAMSTATE() 338 if (I != Cached.end()) in REGISTER_TRAIT_WITH_PROGRAMSTATE() 346 Cached[hash] = ConditionTruthVal(); in REGISTER_TRAIT_WITH_PROGRAMSTATE() 348 Cached[hash] = ConditionTruthVal(*res); in REGISTER_TRAIT_WITH_PROGRAMSTATE() 350 return Cached[hash]; in REGISTER_TRAIT_WITH_PROGRAMSTATE() 355 mutable llvm::DenseMap<unsigned, ConditionTruthVal> Cached; in REGISTER_TRAIT_WITH_PROGRAMSTATE() local
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | RawCommentList.cpp | 342 auto Cached = CommentBeginLine.find(C); in getCommentBeginLine() local 343 if (Cached != CommentBeginLine.end()) in getCommentBeginLine() 344 return Cached->second; in getCommentBeginLine() 351 auto Cached = CommentEndOffset.find(C); in getCommentEndOffset() local 352 if (Cached != CommentEndOffset.end()) in getCommentEndOffset() 353 return Cached->second; in getCommentEndOffset()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleSValBuilder.cpp | 1219 llvm::DenseMap<SymbolRef, SVal> Cached; in simplifySValOnce() member in SimpleSValBuilder::simplifySValOnce::Simplifier 1226 Cached[Sym] = V; in simplifySValOnce() 1266 auto I = Cached.find(S); in simplifySValOnce() 1267 if (I != Cached.end()) in simplifySValOnce() 1298 auto I = Cached.find(S); in simplifySValOnce() 1299 if (I != Cached.end()) in simplifySValOnce() 1312 auto I = Cached.find(S); in simplifySValOnce() 1313 if (I != Cached.end()) in simplifySValOnce() 1335 auto I = Cached.find(S); in simplifySValOnce() 1336 if (I != Cached.end()) in simplifySValOnce() [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
| H A D | size_class_map.h | 339 const uptr Cached = SCMap::getMaxCachedHint(S) * S; in printMap() local 342 S, D, P, L, SCMap::getMaxCachedHint(S), Cached, in printMap() 344 TotalCached += Cached; in printMap()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaConcept.cpp | 474 if (auto *Cached = SatisfactionCache.FindNodeOrInsertPos(ID, InsertPos)) { in CheckConstraintSatisfaction() local 475 OutSatisfaction = *Cached; in CheckConstraintSatisfaction() 488 if (auto *Cached = SatisfactionCache.FindNodeOrInsertPos(ID, InsertPos)) { in CheckConstraintSatisfaction() local 497 OutSatisfaction = *Cached; in CheckConstraintSatisfaction()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | Diagnostic.h | 1116 DiagnosticStorage Cached[NumCached]; variable 1138 if (S >= Cached && S <= Cached + NumCached) { in Deallocate()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | RewriteStatepointsForGC.cpp | 426 auto Cached = Cache.find(I); in findBaseDefiningValueOfVector() local 427 if (Cached != Cache.end()) in findBaseDefiningValueOfVector() 428 return Cached->second; in findBaseDefiningValueOfVector() 523 auto Cached = Cache.find(I); in findBaseDefiningValue() local 524 if (Cached != Cache.end()) in findBaseDefiningValue() 525 return Cached->second; in findBaseDefiningValue()
|
| /openbsd-src/gnu/usr.bin/perl/dist/Attribute-Handlers/ |
| H A D | Changes | 37 - Cached ref/symbol mapping for better performance and more
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | MemorySSAUpdater.cpp | 41 auto Cached = CachedPreviousDef.find(BB); in getPreviousDefRecursive() local 42 if (Cached != CachedPreviousDef.end()) in getPreviousDefRecursive() 43 return Cached->second; in getPreviousDefRecursive()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroFrame.cpp | 2694 auto &Cached = DbgPtrAllocaCache[Storage]; in salvageDebugInfo() local 2695 if (!Cached) { in salvageDebugInfo() 2696 Cached = Builder.CreateAlloca(Storage->getType(), 0, nullptr, in salvageDebugInfo() 2698 Builder.CreateStore(Storage, Cached); in salvageDebugInfo() 2700 Storage = Cached; in salvageDebugInfo()
|
| /openbsd-src/gnu/llvm/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinker.cpp | 2145 auto Cached = ClangModules.find(PCMFile); in isClangModuleRef() local 2146 if (Cached != ClangModules.end()) { in isClangModuleRef() 2150 if (!Quiet && Options.Verbose && (Cached->second != DwoId)) in isClangModuleRef()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 1218 FreeList[I] = Cached + I; in DiagStorageAllocator()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Parse/ |
| H A D | Parser.h | 1343 void takeToks(CachedTokens &Cached) { Toks.swap(Cached); } in takeToks() argument
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 5299 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable() local 5300 if (Cached != DeclCache.end()) in EmitGlobalVariable() 5302 cast<llvm::DIGlobalVariableExpression>(Cached->second)); in EmitGlobalVariable()
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlguts.pod | 1554 w PERL_MAGIC_utf8 vtbl_utf8 Cached UTF-8 information
|
| /openbsd-src/usr.sbin/unbound/doc/ |
| H A D | Changelog | 1302 - From #706: Cached NXDOMAIN does not increase the target nx
|