/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | DomConditionCache.cpp | 14 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 D | AssumptionCache.cpp | 60 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 D | AffectedRangeManager.cpp | 95 (*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 D | TokenAnnotator.h | 58 IsMultiVariableDeclStmt(false), Affected(false), in AnnotatedLine() 187 bool Affected; variable
|
H A D | UsingDeclarationsSorter.cpp | 143 if (Declaration.Line->Affected) { in endUsingDeclarationBlock()
|
H A D | UnwrappedLineFormatter.cpp | 932 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 D | Format.cpp | 2144 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 D | QualifierAlignmentFixer.cpp | 555 if (!Line->Affected || Line->InPPDirective) in fixQualifierAlignment()
|
H A D | SortJavaScriptImports.cpp | 417 AnyImportAffected = AnyImportAffected || Line->Affected; in parseModuleReferences()
|
/freebsd/lib/libc/db/ |
H A D | changelog | 26 recno: Affected by cursor changes. New cursor structures should
|
/freebsd/crypto/openssl/doc/internal/man7/ |
H A D | VERSION.pod | 57 =head2 Affected configuration data
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericDomTreeConstruction.h | 626 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 D | InstCombineSelect.cpp | 3559 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()
|