Home
last modified time | relevance | path

Searched refs:Affected (Results 1 – 17 of 17) 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.cpp58 SmallVectorImpl<AssumptionCache::ResultElem> &Affected) { in findAffectedValues() argument
62 auto InsertAffected = [&Affected](Value *V) { in findAffectedValues()
63 Affected.push_back({V, AssumptionCache::ExprResultIdx}); in findAffectedValues()
66 auto AddAffectedVal = [&Affected](Value *V, unsigned Idx) { in findAffectedValues()
68 Affected.push_back({V, Idx}); in findAffectedValues()
98 SmallVector<AssumptionCache::ResultElem, 16> Affected; in updateAffectedValues() local
99 findAffectedValues(CI, TTI, Affected); in updateAffectedValues()
101 for (auto &AV : Affected) { in updateAffectedValues()
111 SmallVector<AssumptionCache::ResultElem, 16> Affected; in unregisterAssumption() local
112 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.h60 IsMultiVariableDeclStmt(false), Affected(false), in AnnotatedLine()
197 bool Affected; variable
H A DObjCPropertyAttributeOrderFixer.cpp188 if (!Line->Affected || Line->Type != LT_ObjCProperty) in analyze()
H A DUnwrappedLineFormatter.cpp988 if (B.Affected || B.LeadingEmptyLinesAffected) { in join()
989 assert(B.Affected || A.Last->Children.empty()); in join()
990 A.Affected = true; in join()
1436 bool ShouldFormat = TheLine.Affected || FixIndentation; in format()
1492 StartsNewLine && ((PreviousLine && PreviousLine->Affected) || in format()
H A DUsingDeclarationsSorter.cpp143 if (Declaration.Line->Affected) { in endUsingDeclarationBlock()
H A DDefinitionBlockSeparator.cpp99 if (!TargetLine->Affected) in separateBlocks()
H A DFormat.cpp2293 if (!Line->Affected) in removeParens()
2327 if (!Line->Affected && OpeningBraceSurplus == 0) in insertBraces()
2337 if (!Line->Affected) in insertBraces()
2382 if (!Line->Affected) in removeBraces()
2431 if (!Line->Affected) in removeSemi()
2481 BeforeRBrace = Line->Affected ? Token : nullptr; in editEnumTrailingComma()
2522 if (!Line->Affected) in requoteJSStringLiteral()
2752 if (!Line->Affected) in insertTrailingCommas()
2824 if (Line->Affected) { in cleanupLine()
H A DSortJavaScriptImports.cpp414 AnyImportAffected = AnyImportAffected || Line->Affected; in parseModuleReferences()
H A DQualifierAlignmentFixer.cpp572 if (!Line->Affected || Line->InPPDirective) in fixQualifierAlignment()
/freebsd/sys/contrib/openzfs/
H A DSECURITY.md18 - Affected versions or branches
/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/crypto/krb5/src/plugins/kdb/db2/libdb2/
H A DCHANGELOG.db246 recno: Affected by cursor changes. New cursor structures should
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h642 SmallVector<TreeNodePtr, 8> Affected; member
776 II.Affected.push_back(TN); in InsertReachable()
846 for (const TreeNodePtr TN : II.Affected) { in UpdateInsertion()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp3764 static bool hasAffectedValue(Value *V, SmallPtrSetImpl<Value *> &Affected, in hasAffectedValue() argument
3771 if (Depth != 0 && Affected.contains(V)) in hasAffectedValue()
3782 hasAffectedValue(Op, Affected, Depth + 1); in hasAffectedValue()