Home
last modified time | relevance | path

Searched refs:Cached (Results 1 – 20 of 20) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConstraintManager.h337 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
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp342 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()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp1282 Cached[Sym] = V; in simplifySValOnce()
1322 auto I = Cached.find(S); in simplifySValOnce()
1323 if (I != Cached.end()) in simplifySValOnce()
1354 auto I = Cached.find(S); in simplifySValOnce()
1355 if (I != Cached.end()) in simplifySValOnce()
1368 auto I = Cached.find(S); in simplifySValOnce()
1369 if (I != Cached.end()) in simplifySValOnce()
1391 auto I = Cached.find(S); in simplifySValOnce()
1392 if (I != Cached.end()) in simplifySValOnce()
1403 auto I = Cached.find(S); in simplifySValOnce()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsize_class_map.h315 const uptr Cached = SCMap::getMaxCachedHint(S) * S; in printMap() local
318 S, D, P, L, SCMap::getMaxCachedHint(S), Cached, in printMap()
320 TotalCached += Cached; in printMap()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.h1121 DiagnosticStorage Cached[NumCached]; variable
1143 if (S >= Cached && S <= Cached + NumCached) { in Deallocate()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp502 if (auto *Cached = SatisfactionCache.FindNodeOrInsertPos(ID, InsertPos)) { in CheckConstraintSatisfaction() local
503 OutSatisfaction = *Cached; in CheckConstraintSatisfaction()
516 if (auto *Cached = SatisfactionCache.FindNodeOrInsertPos(ID, InsertPos)) { in CheckConstraintSatisfaction() local
525 OutSatisfaction = *Cached; in CheckConstraintSatisfaction()
H A DSemaExpr.cpp18338 APValue Cached; in CheckForImmediateInvocation() local
18346 Cached = std::move(Eval.Val); in CheckForImmediateInvocation()
18384 if (Cached.hasValue()) in CheckForImmediateInvocation()
18385 Res->MoveIntoResult(Cached, getASTContext()); in CheckForImmediateInvocation()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp41 auto Cached = CachedPreviousDef.find(BB); in getPreviousDefRecursive() local
42 if (Cached != CachedPreviousDef.end()) in getPreviousDefRecursive()
43 return Cached->second; in getPreviousDefRecursive()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerImpl.cpp320 auto Cached = ClangModules.find(PCMFile); in isClangModuleRef() local
321 if (Cached != ClangModules.end()) { in isClangModuleRef()
325 if (!Quiet && GlobalData.getOptions().Verbose && (Cached->second != DwoId)) in isClangModuleRef()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp358 auto Cached = Cache.find(I); in findBaseDefiningValueOfVector() local
359 if (Cached != Cache.end()) in findBaseDefiningValueOfVector()
360 return Cached->second; in findBaseDefiningValueOfVector()
455 auto Cached = Cache.find(I); in findBaseDefiningValue() local
456 if (Cached != Cache.end()) in findBaseDefiningValue()
457 return Cached->second; in findBaseDefiningValue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp2902 auto &Cached = ArgToAllocaMap[StorageAsArg]; in salvageDebugInfoImpl() local
2903 if (!Cached) { in salvageDebugInfoImpl()
2904 Cached = Builder.CreateAlloca(Storage->getType(), 0, nullptr, in salvageDebugInfoImpl()
2906 Builder.CreateStore(Storage, Cached); in salvageDebugInfoImpl()
2908 Storage = Cached; in salvageDebugInfoImpl()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.h1045 APValue *Cached = Temp->getOrCreateValue(true); in InitGlobalTemp() local
1046 *Cached = APV; in InitGlobalTemp()
1059 APValue *Cached = Temp->getOrCreateValue(true); in InitGlobalTempComp() local
1062 *Cached = *APV; in InitGlobalTempComp()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp2455 auto Cached = ClangModules.find(PCMFile); in isClangModuleRef() local
2456 if (Cached != ClangModules.end()) { in isClangModuleRef()
2460 if (!Quiet && Options.Verbose && (Cached->second != DwoId)) in isClangModuleRef()
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp1215 FreeList[I] = Cached + I; in DiagStorageAllocator()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1363 void takeToks(CachedTokens &Cached) { Toks.swap(Cached); } in takeToks() argument
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp5490 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable() local
5491 if (Cached != DeclCache.end()) in EmitGlobalVariable()
5493 cast<llvm::DIGlobalVariableExpression>(Cached->second)); in EmitGlobalVariable()
/freebsd-14.2/contrib/byacc/
H A Daclocal.m4343 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
/freebsd-14.2/contrib/dialog/
H A Daclocal.m41307 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
/freebsd-14.2/contrib/ncurses/
H A Daclocal.m41093 AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))
/freebsd-14.2/contrib/unbound/doc/
H A DChangelog1451 - From #706: Cached NXDOMAIN does not increase the target nx