Home
last modified time | relevance | path

Searched refs:Affected (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDomConditionCache.cpp14 SmallVectorImpl<Value *> &Affected) { in findAffectedValues() argument
15 auto InsertAffected = [&Affected](Value *V) { Affected.push_back(V); }; in findAffectedValues()
21 SmallVector<Value *, 16> Affected; in registerBranch() local
22 findAffectedValues(BI->getCondition(), Affected); in registerBranch()
23 for (Value *V : Affected) { in registerBranch()
H A DAssumptionCache.cpp60 SmallVectorImpl<AssumptionCache::ResultElem> &Affected) { in findAffectedValues() argument
64 auto InsertAffected = [&Affected](Value *V) { in findAffectedValues()
65 Affected.push_back({V, AssumptionCache::ExprResultIdx}); in findAffectedValues()
68 auto AddAffectedVal = [&Affected](Value *V, unsigned Idx) { in findAffectedValues()
70 Affected.push_back({V, Idx}); in findAffectedValues()
100 SmallVector<AssumptionCache::ResultElem, 16> Affected; in updateAffectedValues() local
101 findAffectedValues(CI, TTI, Affected); in updateAffectedValues()
103 for (auto &AV : Affected) { in updateAffectedValues()
113 SmallVector<AssumptionCache::ResultElem, 16> Affected; in unregisterAssumption() local
114 findAffectedValues(CI, TTI, Affected); in unregisterAssumption()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DAffectedRangeManager.cpp95 (*I)->Affected = true; in markAllAsAffected()
126 if (!Tok->Children.empty() && Tok->Children.front()->Affected) in nonPPLineAffected()
134 bool LineMoved = PreviousLine && PreviousLine->Affected && in nonPPLineAffected()
140 PreviousLine->Affected && PreviousLine->Last->is(tok::comment); in nonPPLineAffected()
145 Lines[Line->MatchingOpeningBlockLineIndex]->Affected; in nonPPLineAffected()
149 Line->Affected = true; in nonPPLineAffected()
H A DTokenAnnotator.h58 IsMultiVariableDeclStmt(false), Affected(false), in AnnotatedLine()
187 bool Affected; variable
H A DUsingDeclarationsSorter.cpp143 if (Declaration.Line->Affected) { in endUsingDeclarationBlock()
H A DUnwrappedLineFormatter.cpp932 if (B.Affected) in join()
933 A.Affected = true; in join()
1378 bool ShouldFormat = TheLine.Affected || FixIndentation; in format()
1434 StartsNewLine && ((PreviousLine && PreviousLine->Affected) || in format()
H A DFormat.cpp2144 if (!Line->Affected) in removeParens()
2189 if (!Line->Affected && OpeningBraceSurplus == 0) in insertBraces()
2199 if (!Line->Affected) in insertBraces()
2243 if (!Line->Affected) in removeBraces()
2302 if (!Line->Affected) in removeSemi()
2353 if (!Line->Affected) in requoteJSStringLiteral()
2583 if (!Line->Affected) in insertTrailingCommas()
2655 if (Line->Affected) { in cleanupLine()
H A DQualifierAlignmentFixer.cpp555 if (!Line->Affected || Line->InPPDirective) in fixQualifierAlignment()
H A DSortJavaScriptImports.cpp417 AnyImportAffected = AnyImportAffected || Line->Affected; in parseModuleReferences()
/freebsd/lib/libc/db/
H A Dchangelog26 recno: Affected by cursor changes. New cursor structures should
/freebsd/crypto/openssl/doc/internal/man7/
H A DVERSION.pod57 =head2 Affected configuration data
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h626 SmallVector<TreeNodePtr, 8> Affected; member
760 II.Affected.push_back(TN); in InsertReachable()
830 for (const TreeNodePtr TN : II.Affected) { in UpdateInsertion()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp3559 static bool hasAffectedValue(Value *V, SmallPtrSetImpl<Value *> &Affected, in hasAffectedValue() argument
3566 if (Depth != 0 && Affected.contains(V)) in hasAffectedValue()
3577 hasAffectedValue(Op, Affected, Depth + 1); in hasAffectedValue()