Home
last modified time | relevance | path

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

12

/freebsd-14-stable/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
HDLVOptions.cpp507 bool Matched = false; in matchPattern() local
510 return Matched; in matchPattern()
515 Matched = Input == Match.Pattern; in matchPattern()
518 Matched = Input.equals_insensitive(Match.Pattern); in matchPattern()
521 Matched = Match.RE->match(Input); in matchPattern()
527 if (Matched) in matchPattern()
530 return Matched; in matchPattern()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
HDMipsELFObjectWriter.cpp40 bool Matched = false; ///< Is this relocation part of a match. member
46 Out << ", Matched=" << Matched; in print()
116 unsigned Matched = Predicate(*I); in find_best() local
117 if (Matched != FindBest_NoMatch) { in find_best()
125 if (Matched == FindBest_PerfectMatch) { in find_best()
182 if (!X.Matched && in isMatchingReloc()
201 return PreviousBest.Matched && !Candidate.Matched; in compareMatchingRelocs()
493 InsertionPoint->Matched = true; in sortRelocs()
494 Sorted.insert(InsertionPoint, R)->Matched = true; in sortRelocs()
/freebsd-14-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/
HDHeaderIncludes.cpp62 bool Matched = Tok.is(tok::hash) && !Lex.LexFromRawLexer(Tok) && in checkAndConsumeDirectiveWithName() local
67 if (Matched) in checkAndConsumeDirectiveWithName()
69 return Matched; in checkAndConsumeDirectiveWithName()
126 auto Matched = [&]() { in checkAndConsumeInclusiveDirective() local
135 return Matched(); in checkAndConsumeInclusiveDirective()
140 return Matched(); in checkAndConsumeInclusiveDirective()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Analysis/
HDOverflowInstAnalysis.cpp54 bool Matched = in isCheckForZeroAndMulWithOverflow() local
60 if (!Matched) in isCheckForZeroAndMulWithOverflow()
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
HDASTMatchers.h4370 bool Matched = false; in AST_MATCHER_P() local
4376 Matched = true; in AST_MATCHER_P()
4381 return Matched; in AST_MATCHER_P()
5091 bool Matched = false; in AST_POLYMORPHIC_MATCHER_P2() local
5103 Matched = true; in AST_POLYMORPHIC_MATCHER_P2()
5109 return Matched; in AST_POLYMORPHIC_MATCHER_P2()
5177 bool Matched = false; in AST_POLYMORPHIC_MATCHER_P2() local
5194 Matched = true; in AST_POLYMORPHIC_MATCHER_P2()
5204 Matched = true; in AST_POLYMORPHIC_MATCHER_P2()
5210 return Matched; in AST_POLYMORPHIC_MATCHER_P2()
[all …]
/freebsd-14-stable/sys/contrib/dev/acpica/components/debugger/
HDdbinput.c551 BOOLEAN Matched; in AcpiDbDisplayCommandInfo() local
557 Matched = AcpiDbMatchCommandHelp (Command, Next); in AcpiDbDisplayCommandInfo()
558 if (!DisplayAll && Matched) in AcpiDbDisplayCommandInfo()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
HDSampleProfileMatcher.cpp855 bool Matched = functionMatchesProfileHelper(IRFunc, ProfFunc); in functionMatchesProfile() local
856 FuncProfileMatchCache[{&IRFunc, ProfFunc}] = Matched; in functionMatchesProfile()
857 if (Matched) { in functionMatchesProfile()
863 return Matched; in functionMatchesProfile()
/freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaTemplateInstantiate.cpp3836 SmallVector<MatchResult, 4> Matched; in getPatternForClassTemplateSpecialization() local
3853 Matched.push_back(PartialSpecMatchResult()); in getPatternForClassTemplateSpecialization()
3854 Matched.back().Partial = Partial; in getPatternForClassTemplateSpecialization()
3855 Matched.back().Args = Info.takeCanonical(); in getPatternForClassTemplateSpecialization()
3863 if (Matched.size() >= 1) { in getPatternForClassTemplateSpecialization()
3864 SmallVectorImpl<MatchResult>::iterator Best = Matched.begin(); in getPatternForClassTemplateSpecialization()
3865 if (Matched.size() == 1) { in getPatternForClassTemplateSpecialization()
3878 PEnd = Matched.end(); in getPatternForClassTemplateSpecialization()
3889 for (SmallVectorImpl<MatchResult>::iterator P = Matched.begin(), in getPatternForClassTemplateSpecialization()
3890 PEnd = Matched.end(); in getPatternForClassTemplateSpecialization()
[all …]
HDSemaTemplate.cpp4187 SmallVector<MatchResult, 4> Matched; in CheckVarTemplateId() local
4214 Matched.push_back(PartialSpecMatchResult()); in CheckVarTemplateId()
4215 Matched.back().Partial = Partial; in CheckVarTemplateId()
4216 Matched.back().Args = Info.takeCanonical(); in CheckVarTemplateId()
4220 if (Matched.size() >= 1) { in CheckVarTemplateId()
4221 SmallVector<MatchResult, 4>::iterator Best = Matched.begin(); in CheckVarTemplateId()
4222 if (Matched.size() == 1) { in CheckVarTemplateId()
4235 PEnd = Matched.end(); in CheckVarTemplateId()
4245 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(), in CheckVarTemplateId()
4246 PEnd = Matched.end(); in CheckVarTemplateId()
[all …]
/freebsd-14-stable/contrib/llvm-project/clang/lib/ASTMatchers/
HDASTMatchersInternal.cpp404 bool Matched = false; in eachOfVariadicOperator() local
408 Matched = true; in eachOfVariadicOperator()
413 return Matched; in eachOfVariadicOperator()
HDASTMatchFinder.cpp1158 auto Finish = [&](bool Matched) { in matchesAnyAncestorOf() argument
1161 CachedResult.ResultOfMatch = Matched; in matchesAnyAncestorOf()
1164 return Matched; in matchesAnyAncestorOf()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Option/
HDOptTable.cpp166 bool Matched = IgnoreCase ? Rest.starts_with_insensitive(I->getName()) in matchOption() local
168 if (Matched) in matchOption()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
HDAggressiveInstCombine.cpp460 unsigned Matched = 0; in isCTTZTable() local
472 Matched++; in isCTTZTable()
475 return Matched == InputBits; in isCTTZTable()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
HDAMDGPUInstructionSelector.h320 bool &Matched) const;
HDAMDGPUInstructionSelector.cpp5391 bool &Matched) const { in selectVOP3PMadMixModsImpl()
5392 Matched = false; in selectVOP3PMadMixModsImpl()
5448 Matched = true; in selectVOP3PMadMixModsImpl()
5459 bool Matched; in selectVOP3PMadMixModsExt() local
5460 std::tie(Src, Mods) = selectVOP3PMadMixModsImpl(Root, Matched); in selectVOP3PMadMixModsExt()
5461 if (!Matched) in selectVOP3PMadMixModsExt()
5474 bool Matched; in selectVOP3PMadMixMods() local
5475 std::tie(Src, Mods) = selectVOP3PMadMixModsImpl(Root, Matched); in selectVOP3PMadMixMods()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
HDMemProfiler.cpp782 bool Matched = false; member
1060 << Info.TotalSize << (Info.Matched ? " is" : " not") in run()
/freebsd-14-stable/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
HDGlobalISelMatchTable.cpp2155 Matched = MutateCandidate; in chooseInsnToMutate()
2187 if (Matched) { in emitActionOpcodes()
2188 assert(canMutate(Rule, Matched) && in emitActionOpcodes()
2191 unsigned RecycleInsnID = Rule.getInsnVarID(*Matched); in emitActionOpcodes()
HDGlobalISelMatchTable.h2300 InstructionMatcher *Matched; variable
2313 : MatchAction(AK_BuildMI), InsnID(InsnID), I(I), Matched(nullptr) {} in BuildMIAction()
/freebsd-14-stable/contrib/llvm-project/llvm/utils/TableGen/Common/
HDCodeGenSchedule.cpp1252 RecVec Matched = Rec->getValueAsListOfDefs("MatchedItinClasses"); in inferFromItinClass() local
1253 if (!llvm::is_contained(Matched, ItinClassDef)) in inferFromItinClass()
2044 RecVec Matched = (*II)->getValueAsListOfDefs("MatchedItinClasses"); in collectItinProcResources() local
2045 if (!llvm::is_contained(Matched, ItinClassDef)) in collectItinProcResources()
/freebsd-14-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
HDASTDiff.cpp843 bool Matched = M.hasSrc(Id1); in matchBottomUp() local
847 if (Matched || !MatchedChildren) in matchBottomUp()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
HDConstraintElimination.cpp1851 bool Matched = match(CB.Inst, m_Intrinsic<Intrinsic::assume>( in eliminateConstraints() local
1853 (void)Matched; in eliminateConstraints()
1854 assert(Matched && "Must have an assume intrinsic with a icmp operand"); in eliminateConstraints()
/freebsd-14-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
HDllvm-profdata.cpp2354 bool Matched = false; in computeSampleProfileOverlap() local
2399 Matched = true; in computeSampleProfileOverlap()
2407 (Matched && FuncOverlap.Similarity < LowSimilarityThreshold) || in computeSampleProfileOverlap()
2408 (Matched && !FuncFilter.NameFilter.empty() && in computeSampleProfileOverlap()
/freebsd-14-stable/contrib/bsnmp/tests/
HDcatch.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-14-stable/contrib/llvm-project/llvm/utils/TableGen/
HDSubtargetEmitter.cpp1116 RecVec Matched = I->getValueAsListOfDefs("MatchedItinClasses"); in GenSchedClassTables() local
1117 if (is_contained(Matched, SC.ItinClassDef)) { in GenSchedClassTables()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZInstrInfo.td594 // Load immediate on condition. Matched via DAG pattern and created
603 // Move register on condition. Matched via DAG pattern and
612 // Load on condition. Matched via DAG pattern.
638 // Move register on condition. Matched via DAG pattern and
645 // Load on condition. Matched via DAG pattern.

12