| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | RawCommentList.cpp | 339 auto Cached = CommentBeginLine.find(C); in getCommentBeginLine() local 340 if (Cached != CommentBeginLine.end()) in getCommentBeginLine() 341 return Cached->second; in getCommentBeginLine() 348 auto Cached = CommentEndOffset.find(C); in getCommentEndOffset() local 349 if (Cached != CommentEndOffset.end()) in getCommentEndOffset() 350 return Cached->second; in getCommentEndOffset()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleSValBuilder.cpp | 1278 llvm::DenseMap<SymbolRef, SVal> Cached; in simplifySValOnce() member in SimpleSValBuilder::simplifySValOnce::Simplifier 1285 Cached[Sym] = V; in simplifySValOnce() 1325 auto I = Cached.find(S); in simplifySValOnce() 1326 if (I != Cached.end()) in simplifySValOnce() 1357 auto I = Cached.find(S); in simplifySValOnce() 1358 if (I != Cached.end()) in simplifySValOnce() 1371 auto I = Cached.find(S); in simplifySValOnce() 1372 if (I != Cached.end()) in simplifySValOnce() 1394 auto I = Cached.find(S); in simplifySValOnce() 1395 if (I != Cached.end()) in simplifySValOnce() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConstraintManager.h | 348 auto I = Cached.find(hash); in REGISTER_TRAIT_WITH_PROGRAMSTATE() 349 if (I != Cached.end()) in REGISTER_TRAIT_WITH_PROGRAMSTATE() 356 return Cached[hash] = res ? ConditionTruthVal(*res) : ConditionTruthVal(); in REGISTER_TRAIT_WITH_PROGRAMSTATE() 361 mutable llvm::DenseMap<unsigned, ConditionTruthVal> Cached; in REGISTER_TRAIT_WITH_PROGRAMSTATE() local
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | EvalEmitter.cpp | 312 APValue *Cached = Temp->getOrCreateValue(true); in updateGlobalTemporaries() local 316 *T, { *Cached = Ptr.deref<T>().toAPValue(Ctx.getASTContext()); }); in updateGlobalTemporaries() 320 *Cached = *APV; in updateGlobalTemporaries()
|
| H A D | Interp.h | 1553 APValue *Cached = Temp->getOrCreateValue(true); in InitGlobalTemp() local 1554 *Cached = APV; in InitGlobalTemp() 1573 APValue *Cached = Temp->getOrCreateValue(true); in InitGlobalTempComp() local 1580 *Cached = *APV; in InitGlobalTempComp()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | size_class_map.h | 315 const uptr Cached = SCMap::getMaxCachedHint(S) * S; 317 "C%02zu => S: %zu diff: +%zu %02zu%% L %zu Cached: %u %zu; id %zu\n", I, 318 S, D, P, L, SCMap::getMaxCachedHint(S), Cached, 320 TotalCached += Cached; 323 Buffer.append("Total Cached: %zu\n", TotalCached); 337 const uptr Cached = SCMap::getMaxCachedHint(S) * S; printMap() local
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Diagnostic.h | 193 DiagnosticStorage Cached[NumCached]; variable 215 if (S >= Cached && S <= Cached + NumCached) { in Deallocate()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroFrame.cpp | 1895 auto &Cached = ArgToAllocaMap[StorageAsArg]; in salvageDebugInfoImpl() local 1896 if (!Cached) { in salvageDebugInfoImpl() 1897 Cached = Builder.CreateAlloca(Storage->getType(), 0, nullptr, in salvageDebugInfoImpl() 1899 Builder.CreateStore(Storage, Cached); in salvageDebugInfoImpl() 1901 Storage = Cached; in salvageDebugInfoImpl()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DWARFLinkerImpl.cpp | 317 auto Cached = ClangModules.find(PCMFile); in isClangModuleRef() local 318 if (Cached != ClangModules.end()) { in isClangModuleRef() 322 if (!Quiet && GlobalData.getOptions().Verbose && (Cached->second != DwoId)) in isClangModuleRef()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | RewriteStatepointsForGC.cpp | 357 auto Cached = Cache.find(I); in findBaseDefiningValueOfVector() local 358 if (Cached != Cache.end()) in findBaseDefiningValueOfVector() 359 return Cached->second; in findBaseDefiningValueOfVector() 454 auto Cached = Cache.find(I); in findBaseDefiningValue() local 455 if (Cached != Cache.end()) in findBaseDefiningValue() 456 return Cached->second; in findBaseDefiningValue()
|
| /freebsd/contrib/llvm-project/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()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaConcept.cpp | 647 if (auto *Cached = SatisfactionCache.FindNodeOrInsertPos(ID, InsertPos)) { in CheckConstraintSatisfaction() local 648 OutSatisfaction = *Cached; in CheckConstraintSatisfaction() 661 if (auto *Cached = SatisfactionCache.FindNodeOrInsertPos(ID, InsertPos)) { in CheckConstraintSatisfaction() local 670 OutSatisfaction = *Cached; in CheckConstraintSatisfaction()
|
| H A D | SemaExpr.cpp | 17727 APValue Cached; in CheckForImmediateInvocation() local 17735 Cached = std::move(Eval.Val); in CheckForImmediateInvocation() 17773 if (Cached.hasValue()) in CheckForImmediateInvocation() 17774 Res->MoveIntoResult(Cached, getASTContext()); in CheckForImmediateInvocation()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinker.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFLinker.cpp | 2592 auto Cached = ClangModules.find(PCMFile); in isClangModuleRef() local 2593 if (Cached != ClangModules.end()) { in isClangModuleRef() 2597 if (!Quiet && Options.Verbose && (Cached->second != DwoId)) in isClangModuleRef()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 1502 FreeList[I] = Cached + I; in DiagStorageAllocator()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 1187 void takeToks(CachedTokens &Cached) { Toks.swap(Cached); } in takeToks() argument
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 5894 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable() local 5895 if (Cached != DeclCache.end()) in EmitGlobalVariable() 5897 cast<llvm::DIGlobalVariableExpression>(Cached->second)); in EmitGlobalVariable()
|
| /freebsd/contrib/byacc/ |
| H A D | aclocal.m4 | 342 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
|
| /freebsd/contrib/dialog/ |
| H A D | aclocal.m4 | 1307 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
|
| /freebsd/contrib/unbound/doc/ |
| H A D | unbound.conf.rst | 2934 Cached responses are not ratelimited by this setting.
|
| H A D | Changelog | 1983 - From #706: Cached NXDOMAIN does not increase the target nx
|
| /freebsd/contrib/ncurses/ |
| H A D | aclocal.m4 | 1090 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
|