Home
last modified time | relevance | path

Searched refs:Matched (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVOptions.cpp508 bool Matched = false; in matchPattern() local
511 return Matched; in matchPattern()
516 Matched = Input == Match.Pattern; in matchPattern()
519 Matched = Input.equals_insensitive(Match.Pattern); in matchPattern()
522 Matched = Match.RE->match(Input); in matchPattern()
528 if (Matched) in matchPattern()
531 return Matched; in matchPattern()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp61 bool Matched = Tok.is(tok::hash) && !Lex.LexFromRawLexer(Tok) && in checkAndConsumeDirectiveWithName() local
66 if (Matched) in checkAndConsumeDirectiveWithName()
68 return Matched; in checkAndConsumeDirectiveWithName()
125 auto Matched = [&]() { in checkAndConsumeInclusiveDirective() local
134 return Matched(); in checkAndConsumeInclusiveDirective()
139 return Matched(); in checkAndConsumeInclusiveDirective()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DOverflowInstAnalysis.cpp54 bool Matched = in isCheckForZeroAndMulWithOverflow() local
60 if (!Matched) in isCheckForZeroAndMulWithOverflow()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp41 bool Matched = false; ///< Is this relocation part of a match. member
103 unsigned Matched = Predicate(*I); in find_best() local
104 if (Matched != FindBest_NoMatch) { in find_best()
108 if (Matched == FindBest_PerfectMatch) in find_best()
424 (!Best->Matched && R1.Addend == Best->R.Addend))) in sortRelocs()
428 Best->Matched = true; in sortRelocs()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4463 bool Matched = false; in AST_MATCHER_P() local
4469 Matched = true; in AST_MATCHER_P()
4474 return Matched; in AST_MATCHER_P()
5184 bool Matched = false; in AST_POLYMORPHIC_MATCHER_P2() local
5196 Matched = true; in AST_POLYMORPHIC_MATCHER_P2()
5202 return Matched; in AST_POLYMORPHIC_MATCHER_P2()
5236 bool Matched = false; in AST_POLYMORPHIC_MATCHER_P2() local
5245 Matched = true; in AST_POLYMORPHIC_MATCHER_P2()
5256 return Matched; in AST_POLYMORPHIC_MATCHER_P2()
5386 bool Matched = false; in AST_POLYMORPHIC_MATCHER_P() local
[all …]
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbinput.c554 BOOLEAN Matched; in AcpiDbDisplayCommandInfo() local
560 Matched = AcpiDbMatchCommandHelp (Command, Next); in AcpiDbDisplayCommandInfo()
561 if (!DisplayAll && Matched) in AcpiDbDisplayCommandInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileMatcher.cpp846 bool Matched = functionMatchesProfileHelper(IRFunc, ProfFunc); in functionMatchesProfile() local
847 FuncProfileMatchCache[{&IRFunc, ProfFunc}] = Matched; in functionMatchesProfile()
848 if (Matched) { in functionMatchesProfile()
854 return Matched; in functionMatchesProfile()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp4033 SmallVector<MatchResult, 4> Matched, ExtraMatched; in getPatternForClassTemplateSpecialization() local
4063 auto &List = Info.hasStrictPackMatch() ? ExtraMatched : Matched; in getPatternForClassTemplateSpecialization()
4067 if (Matched.empty() && PrimaryStrictPackMatch) in getPatternForClassTemplateSpecialization()
4068 Matched = std::move(ExtraMatched); in getPatternForClassTemplateSpecialization()
4074 if (Matched.size() >= 1) { in getPatternForClassTemplateSpecialization()
4075 SmallVectorImpl<MatchResult>::iterator Best = Matched.begin(); in getPatternForClassTemplateSpecialization()
4076 if (Matched.size() == 1) { in getPatternForClassTemplateSpecialization()
4089 PEnd = Matched.end(); in getPatternForClassTemplateSpecialization()
4100 for (SmallVectorImpl<MatchResult>::iterator P = Matched.begin(), in getPatternForClassTemplateSpecialization()
4101 PEnd = Matched.end(); in getPatternForClassTemplateSpecialization()
[all …]
H A DSemaTypeTraits.cpp1882 bool Matched = false; in EvaluateArrayTypeTrait() local
1885 Matched = true; in EvaluateArrayTypeTrait()
1892 if (Matched && T->isArrayType()) { in EvaluateArrayTypeTrait()
H A DSemaTemplate.cpp4550 SmallVector<MatchResult, 4> Matched; in CheckVarTemplateId() local
4589 Matched.push_back(PartialSpecMatchResult()); in CheckVarTemplateId()
4590 Matched.back().Partial = Partial; in CheckVarTemplateId()
4591 Matched.back().Args = Info.takeSugared(); in CheckVarTemplateId()
4595 if (Matched.size() >= 1) { in CheckVarTemplateId()
4596 SmallVector<MatchResult, 4>::iterator Best = Matched.begin(); in CheckVarTemplateId()
4597 if (Matched.size() == 1) { in CheckVarTemplateId()
4610 PEnd = Matched.end(); in CheckVarTemplateId()
4620 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(), in CheckVarTemplateId()
4621 PEnd = Matched.end(); in CheckVarTemplateId()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp165 bool Matched = IgnoreCase ? Rest.starts_with_insensitive(Name) in matchOption() local
167 if (Matched) in matchOption()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp403 bool Matched = false; in eachOfVariadicOperator() local
407 Matched = true; in eachOfVariadicOperator()
412 return Matched; in eachOfVariadicOperator()
H A DASTMatchFinder.cpp1160 auto Finish = [&](bool Matched) { in matchesAnyAncestorOf() argument
1163 CachedResult.ResultOfMatch = Matched; in matchesAnyAncestorOf()
1166 return Matched; in matchesAnyAncestorOf()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp468 unsigned Matched = 0; in isCTTZTable() local
480 Matched++; in isCTTZTable()
483 return Matched == InputBits; in isCTTZTable()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenSchedule.cpp1206 ConstRecVec Matched = Rec->getValueAsListOfDefs("MatchedItinClasses"); in inferFromItinClass() local
1207 if (!llvm::is_contained(Matched, ItinClassDef)) in inferFromItinClass()
1985 ConstRecVec Matched = R->getValueAsListOfDefs("MatchedItinClasses"); in collectItinProcResources() local
1986 if (!llvm::is_contained(Matched, ItinClassDef)) in collectItinProcResources()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.cpp2190 Matched = MutateCandidate; in chooseInsnToMutate()
2222 if (Matched) { in emitActionOpcodes()
2223 assert(canMutate(Rule, Matched) && in emitActionOpcodes()
2226 unsigned RecycleInsnID = Rule.getInsnVarID(*Matched); in emitActionOpcodes()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.h328 bool &Matched) const;
H A DAMDGPUInstructionSelector.cpp6367 bool &Matched) const { in selectVOP3PMadMixModsImpl()
6368 Matched = false; in selectVOP3PMadMixModsImpl()
6411 Matched = true; in selectVOP3PMadMixModsImpl()
6422 bool Matched; in selectVOP3PMadMixModsExt() local
6423 std::tie(Src, Mods) = selectVOP3PMadMixModsImpl(Root, Matched); in selectVOP3PMadMixModsExt()
6424 if (!Matched) in selectVOP3PMadMixModsExt()
6437 bool Matched; in selectVOP3PMadMixMods() local
6438 std::tie(Src, Mods) = selectVOP3PMadMixModsImpl(Root, Matched); in selectVOP3PMadMixMods()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstraintElimination.cpp1984 bool Matched = match(CB.Inst, m_Intrinsic<Intrinsic::assume>( in eliminateConstraints() local
1986 (void)Matched; in eliminateConstraints()
1987 assert(Matched && "Must have an assume intrinsic with a icmp operand"); in eliminateConstraints()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp8957 Matched, NoMatch, ShortCircuitAll, ShortCircuitSame enumerator
8993 return ParserResult::ok( ParseResultType::Matched ); in convertInto()
8997 return ParserResult::ok( ParseResultType::Matched ); in convertInto()
9008 return ParserResult::ok( ParseResultType::Matched ); in convertInto()
9077 return ParserResult::ok( ParseResultType::Matched ); in setFlag()
9096 return ParserResult::ok( ParseResultType::Matched ); in invoke()
9252 return ParserResult::ok( ParseResultType::Matched ); in set()
9277 … return InternalParseResult::ok( ParseState( ParseResultType::Matched, ++remainingTokens ) ); in parse()
9367 … return InternalParseResult::ok( ParseState( ParseResultType::Matched, ++remainingTokens ) ); in parse()
9636 return ParserResult::ok( ParseResultType::Matched ); in makeCommandLineParser()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp2450 bool Matched = false; in computeSampleProfileOverlap() local
2495 Matched = true; in computeSampleProfileOverlap()
2503 (Matched && FuncOverlap.Similarity < LowSimilarityThreshold) || in computeSampleProfileOverlap()
2504 (Matched && !FuncFilter.NameFilter.empty() && in computeSampleProfileOverlap()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp1089 ConstRecVec Matched = I->getValueAsListOfDefs("MatchedItinClasses"); in genSchedClassTables() local
1090 if (is_contained(Matched, SC.ItinClassDef)) { in genSchedClassTables()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp5419 bool Matched = matchUnaryPredicate(MRI, RHS, BuildUDIVPattern); in buildUDivorURemUsingMul() local
5420 (void)Matched; in buildUDivorURemUsingMul()
5421 assert(Matched && "Expected unary predicate match to succeed"); in buildUDivorURemUsingMul()
5618 bool Matched = matchUnaryPredicate(MRI, RHS, BuildExactSDIVPattern); in buildSDivUsingMul() local
5619 (void)Matched; in buildSDivUsingMul()
5620 assert(Matched && "Expected unary predicate match to succeed"); in buildSDivUsingMul()
5674 bool Matched = matchUnaryPredicate(MRI, RHS, BuildSDIVPattern); in buildSDivUsingMul() local
5675 (void)Matched; in buildSDivUsingMul()
5676 assert(Matched && "Expected unary predicate match to succeed"); in buildSDivUsingMul()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.td587 // Load immediate on condition. Matched via DAG pattern and created
596 // Move register on condition. Matched via DAG pattern and
605 // Load on condition. Matched via DAG pattern.
631 // Move register on condition. Matched via DAG pattern and
638 // Load on condition. Matched via DAG pattern.
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4394 SmallSetVector<PHIPair, 8> Matched; in MatchPhiSet() local
4410 if ((IsMatched = MatchPhiNode(PHI, &P, Matched, PhiNodesToMatch))) in MatchPhiSet()
4415 WillNotMatch.insert_range(llvm::make_first_range(Matched)); in MatchPhiSet()
4416 Matched.clear(); in MatchPhiSet()
4420 for (auto MV : Matched) in MatchPhiSet()
4422 Matched.clear(); in MatchPhiSet()

12