| /NextBSD/contrib/llvm/lib/Target/Hexagon/ |
| HD | HexagonGenExtract.cpp | 94 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/ |
| HD | cpplint.py | 409 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/ |
| HD | FormatString.cpp | 279 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/ |
| HD | asan_suppressions.cc | 57 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/ |
| HD | addrmatch.sh | 25 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/ |
| HD | tsan_suppressions.cc | 100 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/ |
| HD | ClangCommentHTMLTagsEmitter.cpp | 45 StringMatcher::StringPair Match(Spelling, "return true;"); in EmitClangCommentHTMLTagsProperties() local 47 MatchesEndTagOptional.push_back(Match); in EmitClangCommentHTMLTagsProperties() 49 MatchesEndTagForbidden.push_back(Match); in EmitClangCommentHTMLTagsProperties()
|
| HD | ClangCommentHTMLNamedCharacterReferenceEmitter.cpp | 70 StringMatcher::StringPair Match(Spelling, CLiteral.str()); in EmitClangCommentHTMLNamedCharacterReferences() local 71 NameToUTF8.push_back(Match); in EmitClangCommentHTMLNamedCharacterReferences()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Core/ |
| HD | RegularExpression.cpp | 117 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/ |
| HD | RegularExpression.h | 70 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/ |
| HD | SILoadStoreOptimizer.cpp | 397 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/ |
| HD | weak | 8 # - 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/ |
| HD | X86AsmParser.cpp | 2623 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/ |
| HD | predicates.md | 64 ;; 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 …]
|
| HD | t-mingw32 | 1 # Match SYSTEM_INCLUDE_DIR
|
| /NextBSD/sys/contrib/dev/acpica/components/events/ |
| HD | evrgnini.c | 392 BOOLEAN Match; in AcpiEvIsPciRootBridge() local 403 Match = AcpiUtIsPciRootBridge (Hid->String); in AcpiEvIsPciRootBridge() 406 if (Match) in AcpiEvIsPciRootBridge()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Tooling/ |
| HD | JSONCompilationDatabase.cpp | 179 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/ |
| HD | sanitizer_suppressions.h | 37 bool Match(const char *str, const char *type, Suppression **s);
|
| HD | sanitizer_suppressions.cc | 80 bool SuppressionContext::Match(const char *str, const char *type, in Match() function in __sanitizer::SuppressionContext
|
| /NextBSD/contrib/llvm/lib/Target/SystemZ/ |
| HD | SystemZCallingConv.td | 20 // 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/ |
| HD | MipsCallingConv.td | 12 /// 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/ |
| HD | sanitizer_suppressions_test.cc | 26 TEST(Suppressions, Match) { in TEST() argument
|
| /NextBSD/contrib/llvm/tools/lldb/source/Interpreter/ |
| HD | CommandObjectRegexCommand.cpp | 63 RegularExpression::Match regex_match(m_max_matches); in DoExecute()
|
| /NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| HD | InstrEmitter.cpp | 112 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/ |
| HD | lsan_common.cc | 467 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()
|