Home
last modified time | relevance | path

Searched refs:Match (Results 1 – 25 of 150) sorted by relevance

123456

/NextBSD/contrib/llvm/lib/Target/Hexagon/
HDHexagonGenExtract.cpp94 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY() local
98 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
101 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
105 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
109 Match = match(In, m_And(m_Shl(m_Value(BF), m_ConstantInt(CSL)), in INITIALIZE_PASS_DEPENDENCY()
111 if (Match && NoSR0) in INITIALIZE_PASS_DEPENDENCY()
114 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
118 Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
121 if (!Match) { in INITIALIZE_PASS_DEPENDENCY()
125 Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(CSR)), in INITIALIZE_PASS_DEPENDENCY()
[all …]
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/scripts/
HDcpplint.py409 def Match(pattern, s): function
708 if Match(r'T(EST|est)', self.current_function):
1451 and not Match(r'};*\s*(//|/\*).*\bnamespace\b', line)):
1468 if not Match((r'};*\s*(//|/\*).*\bnamespace\s+' + re.escape(self.name) +
1476 if not Match(r'};*\s*(//|/\*).*\bnamespace[\*/\.\\\s]*$', line):
1549 if Match(r'^\s*#\s*(if|ifdef|ifndef)\b', line):
1553 elif Match(r'^\s*#\s*(else|elif)\b', line):
1568 elif Match(r'^\s*#\s*endif\b', line):
1629 namespace_decl_match = Match(r'^\s*namespace\b\s*([:\w]+)?(.*)$', line)
1662 class_decl_match = Match(
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDFormatString.cpp279 return Match; in matchesType()
293 return Match; in matchesType()
304 return Match; in matchesType()
314 return T == C.UnsignedCharTy || T == C.SignedCharTy ? Match in matchesType()
317 return T == C.UnsignedShortTy ? Match : NoMatch; in matchesType()
319 return T == C.ShortTy ? Match : NoMatch; in matchesType()
321 return T == C.UnsignedIntTy ? Match : NoMatch; in matchesType()
323 return T == C.IntTy ? Match : NoMatch; in matchesType()
325 return T == C.UnsignedLongTy ? Match : NoMatch; in matchesType()
327 return T == C.LongTy ? Match : NoMatch; in matchesType()
[all …]
/NextBSD/contrib/compiler-rt/lib/asan/
HDasan_suppressions.cc57 return suppression_ctx->Match(interceptor_name, kInterceptorName, &s); in IsInterceptorSuppressed()
70 return suppression_ctx->Match(global_var_name, kODRViolation, &s); in IsODRViolationSuppressed()
86 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s)) in IsStackTraceSuppressed()
98 if (suppression_ctx->Match(function_name, kInterceptorViaFunction, in IsStackTraceSuppressed()
/NextBSD/crypto/openssh/regress/
HDaddrmatch.sh25 Match Address 192.168.0.0/16,!192.168.30.0/24,10.0.0.0/8,host.example.com
27 Match Address 1.1.1.1,::1,!::3,2000::/16
29 Match LocalAddress 127.0.0.1,::1
31 Match LocalPort 5678
/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_suppressions.cc100 if (suppression_ctx->Match(info.function, stype, sp) || in IsSuppressed()
101 suppression_ctx->Match(info.file, stype, sp) || in IsSuppressed()
102 suppression_ctx->Match(info.module, stype, sp)) { in IsSuppressed()
139 if (suppression_ctx->Match(global.name, stype, &s) || in IsSuppressed()
140 suppression_ctx->Match(global.module, stype, &s)) { in IsSuppressed()
/NextBSD/contrib/llvm/tools/clang/utils/TableGen/
HDClangCommentHTMLTagsEmitter.cpp45 StringMatcher::StringPair Match(Spelling, "return true;"); in EmitClangCommentHTMLTagsProperties() local
47 MatchesEndTagOptional.push_back(Match); in EmitClangCommentHTMLTagsProperties()
49 MatchesEndTagForbidden.push_back(Match); in EmitClangCommentHTMLTagsProperties()
HDClangCommentHTMLNamedCharacterReferenceEmitter.cpp70 StringMatcher::StringPair Match(Spelling, CLiteral.str()); in EmitClangCommentHTMLNamedCharacterReferences() local
71 NameToUTF8.push_back(Match); in EmitClangCommentHTMLNamedCharacterReferences()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDRegularExpression.cpp117 RegularExpression::Execute (const char* s, Match *match) const in Execute()
151 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) con… in GetMatchAtIndex()
163 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str)… in GetMatchAtIndex()
186 RegularExpression::Match::GetMatchSpanningIndices (const char* s, uint32_t idx1, uint32_t idx2, llv… in GetMatchSpanningIndices()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDRegularExpression.h70 class Match
73 Match (uint32_t max_matches) : in Match() function
182 Execute (const char* string, Match *match = NULL) const;
/NextBSD/contrib/llvm/lib/Target/AMDGPU/
HDSILoadStoreOptimizer.cpp397 MachineBasicBlock::iterator Match = findMatchingDSInst(I, Size); in optimizeBlock() local
398 if (Match != E) { in optimizeBlock()
400 I = mergeRead2Pair(I, Match, Size); in optimizeBlock()
408 MachineBasicBlock::iterator Match = findMatchingDSInst(I, Size); in optimizeBlock() local
409 if (Match != E) { in optimizeBlock()
411 I = mergeWrite2Pair(I, Match, Size); in optimizeBlock()
/NextBSD/contrib/file/magic/Magdir/
HDweak8 # - Match against very wide range of values
9 # - Match against generic word in some spoken languages (e.g. English)
/NextBSD/contrib/llvm/lib/Target/X86/AsmParser/
HDX86AsmParser.cpp2623 unsigned Match[4]; in MatchAndEmitATTInstruction() local
2625 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) { in MatchAndEmitATTInstruction()
2627 Match[I] = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore, in MatchAndEmitATTInstruction()
2630 if (Match[I] == Match_MissingFeature) in MatchAndEmitATTInstruction()
2641 std::count(std::begin(Match), std::end(Match), Match_Success); in MatchAndEmitATTInstruction()
2657 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) in MatchAndEmitATTInstruction()
2658 if (Match[I] == Match_Success) in MatchAndEmitATTInstruction()
2680 if (std::count(std::begin(Match), std::end(Match), Match_MnemonicFail) == 4) { in MatchAndEmitATTInstruction()
2708 if (std::count(std::begin(Match), std::end(Match), in MatchAndEmitATTInstruction()
2717 if (std::count(std::begin(Match), std::end(Match), in MatchAndEmitATTInstruction()
[all …]
/NextBSD/contrib/gcc/config/i386/
HDpredicates.md64 ;; Match an SI or HImode register for a zero_extract.
536 ;; Match exactly zero.
545 ;; Match exactly one.
550 ;; Match exactly eight.
555 ;; Match 2, 4, or 8. Used for leal multiplicands.
563 ;; Match 0 or 1.
568 ;; Match 0 to 3.
573 ;; Match 0 to 7.
578 ;; Match 0 to 15.
583 ;; Match 0 to 63.
[all …]
HDt-mingw321 # Match SYSTEM_INCLUDE_DIR
/NextBSD/sys/contrib/dev/acpica/components/events/
HDevrgnini.c392 BOOLEAN Match; in AcpiEvIsPciRootBridge() local
403 Match = AcpiUtIsPciRootBridge (Hid->String); in AcpiEvIsPciRootBridge()
406 if (Match) in AcpiEvIsPciRootBridge()
/NextBSD/contrib/llvm/tools/clang/lib/Tooling/
HDJSONCompilationDatabase.cpp179 StringRef Match = MatchTrie.findEquivalent(NativeFilePath, ES); in getCompileCommands() local
180 if (Match.empty()) in getCompileCommands()
183 CommandsRefI = IndexByFile.find(Match); in getCompileCommands()
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_suppressions.h37 bool Match(const char *str, const char *type, Suppression **s);
HDsanitizer_suppressions.cc80 bool SuppressionContext::Match(const char *str, const char *type, in Match() function in __sanitizer::SuppressionContext
/NextBSD/contrib/llvm/lib/Target/SystemZ/
HDSystemZCallingConv.td20 // Match if this specific argument is a fixed (i.e. named) argument.
24 // Match if this specific argument was widened from a short vector type.
/NextBSD/contrib/llvm/lib/Target/Mips/
HDMipsCallingConv.td12 /// CCIfSubtarget - Match if the current subtarget has a feature F.
23 /// Match if the original argument (before lowering) was a float.
29 /// Match if the original argument (before lowering) was a 128-bit float (i.e.
34 /// Match if this specific argument is a vararg.
41 /// Match if the special calling conv is the specified value.
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/
HDsanitizer_suppressions_test.cc26 TEST(Suppressions, Match) { in TEST() argument
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDCommandObjectRegexCommand.cpp63 RegularExpression::Match regex_match(m_max_matches); in DoExecute()
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDInstrEmitter.cpp112 bool Match = true; in EmitCopyFromReg() local
119 Match = false; in EmitCopyFromReg()
121 Match = false; in EmitCopyFromReg()
130 Match = false; in EmitCopyFromReg()
151 MatchReg &= Match; in EmitCopyFromReg()
/NextBSD/contrib/compiler-rt/lib/lsan/
HDlsan_common.cc467 if (suppressions->Match(module_name, kSuppressionLeak, &s)) in GetSuppressionForAddr()
473 if (suppressions->Match(cur->info.function, kSuppressionLeak, &s) || in GetSuppressionForAddr()
474 suppressions->Match(cur->info.file, kSuppressionLeak, &s)) { in GetSuppressionForAddr()

123456