Home
last modified time | relevance | path

Searched refs:match (Results 126 – 150 of 1827) sorted by relevance

12345678910>>...74

/freebsd/sys/x86/x86/
H A Ducode.c62 const void *(*match)(const uint8_t *, size_t *); member
67 .match = ucode_intel_match,
72 .match = ucode_amd_match,
376 const uint8_t *fileaddr, *match; in ucode_load_bsp() local
399 fileaddr = match = NULL; in ucode_load_bsp()
410 match = ucode_loader->match(fileaddr, &len); in ucode_load_bsp()
411 if (match != NULL) { in ucode_load_bsp()
414 memcpy_early(addr, match, len); in ucode_load_bsp()
415 match = addr; in ucode_load_bsp()
417 error = ucode_loader->load(match, false, &nrev, &orev); in ucode_load_bsp()
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_pathmatch.c59 int match = 1, nomatch = 0; in pm_list() local
66 match = 0; in pm_list()
78 return (match); in pm_list()
84 return (match); in pm_list()
92 return (match); in pm_list()
106 int match = 1, nomatch = 0; in pm_list_w() local
113 match = 0; in pm_list_w()
125 return (match); in pm_list_w()
131 return (match); in pm_list_w()
139 return (match); in pm_list_w()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_clone/
H A Dzfs_clone_010_pos.ksh104 (for match in ${clones[@]};do
105 [[ $match != $unexpected_clone ]] && \
111 (for match in ${clones[@]};do
112 [[ $match == $expected_clone ]] && \
113 [[ $match != $unexpected_clone ]] \
119 (for match in ${clones[@]};do
120 [[ $match == $expected_clone ]] && \
128 (for match in ${clones[@]};do
129 [[ $match == $expected_clone ]] && exit 0; \
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_xml_output_unittest.py282 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
284 re.match, 'XML datettime string %s has incorrect format' % date_time_str
287 year=int(match.group(1)),
288 month=int(match.group(2)),
289 day=int(match.group(3)),
290 hour=int(match.group(4)),
291 minute=int(match.group(5)),
292 second=int(match.group(6)),
H A Dgoogletest-filter-unittest.py208 match = TEST_CASE_REGEX.match(line)
209 if match is not None:
210 test_case = match.group(1)
212 match = TEST_REGEX.match(line)
213 if match is not None:
214 test = match.group(1)
224 match = DISABLED_BANNER_REGEX.match(line)
225 if match is not None:
226 banners_printed.append(match.group(1))
/freebsd/usr.sbin/daemon/tests/
H A Ddaemon_test.sh35 atf_check -s exit:0 -o match:"daemon: sleep" ps -p `cat daemon.pid`
37 atf_check -s exit:0 -o match:"[0-9] sleep 300$" ps -p `cat sleep.pid`
60 atf_check -s exit:0 -o match:"[0-9] bin/sleep 300$" \
74 atf_check -s exit:0 -o match:"[0-9] sleep 300$" ps -p `cat sleep.pid`
87 atf_check -s not-exit:0 -e match:"process already running" \
161 atf_check -s exit:0 -o match:"daemon: sleep" ps -p `cat daemon.pid`
174 atf_check -s not-exit:0 -e match:"process already running" \
188 atf_check -s exit:0 -o match:"daemon: I'm a title!" \
203 atf_check -s exit:0 -o match:"^nobody" ps -up `cat sleep.pid`
/freebsd/crypto/heimdal/appl/login/
H A Dlogin_access.c65 int match = NO; in login_access() local
85 while (!match && fgets(line, sizeof(line), fp)) { in login_access()
115 match = (list_match(froms, &item, from_match) in login_access()
122 return (match == 0 || (line[0] == '+')); in login_access()
133 int match = NO; in list_match() local
148 if ((match = (*match_fn) (tok, item)) != 0) /* YES */ in list_match()
153 if (match != NO) { in list_match()
157 return (match); in list_match()
/freebsd/crypto/heimdal/appl/rsh/
H A Dlogin_access.c65 int match = NO; in login_access() local
85 while (!match && fgets(line, sizeof(line), fp)) { in login_access()
115 match = (list_match(froms, &item, from_match) in login_access()
122 return (match == 0 || (line[0] == '+')); in login_access()
133 int match = NO; in list_match() local
148 if ((match = (*match_fn) (tok, item)) != 0) /* YES */ in list_match()
153 if (match != NO) { in list_match()
157 return (match); in list_match()
/freebsd/sys/contrib/zlib/
H A Dinftrees.c52 unsigned match; /* use base and extra for symbol >= match */ in inflate_table() local
179 match = 20; in inflate_table()
184 match = 257; in inflate_table()
189 match = 0; in inflate_table()
212 if (work[sym] + 1U < match) { in inflate_table()
216 else if (work[sym] >= match) { in inflate_table()
217 here.op = (unsigned char)(extra[work[sym] - match]); in inflate_table()
218 here.val = base[work[sym] - match]; in inflate_table()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DGuardUtils.cpp19 return match(U, m_Intrinsic<Intrinsic::experimental_guard>()); in isGuard()
23 return match(V, m_Intrinsic<Intrinsic::experimental_widenable_condition>()); in isWidenableCondition()
41 if (match(&Insn, m_Intrinsic<Intrinsic::experimental_deoptimize>())) in isGuardAsWidenableBranch()
82 if (match(Cond, m_Intrinsic<Intrinsic::experimental_widenable_condition>())) { in parseWidenableBranch()
94 if (!match(Cond, m_And(m_Value(A), m_Value(B)))) in parseWidenableBranch()
101 if (match(A, m_Intrinsic<Intrinsic::experimental_widenable_condition>()) && in parseWidenableBranch()
108 if (match(B, m_Intrinsic<Intrinsic::experimental_widenable_condition>()) && in parseWidenableBranch()
126 if (match(Check, m_And(m_Value(LHS), m_Value(RHS)))) { in parseCondition()
H A DDomConditionCache.cpp30 if (match(I, m_PtrToInt(m_Value(Op)))) { in findAffectedValues()
39 if (match(Cond, m_ICmp(Pred, m_Value(A), m_Constant()))) { in findAffectedValues()
46 if (match(A, m_BitwiseLogic(m_Value(X), m_ConstantInt())) || in findAffectedValues()
47 match(A, m_Shift(m_Value(X), m_ConstantInt()))) in findAffectedValues()
52 if (match(A, m_Add(m_Value(X), m_ConstantInt()))) in findAffectedValues()
/freebsd/lib/libexecinfo/tests/
H A Dsigtramp_test.c27 size_t n, i, match; in handler() local
34 match = -1; in handler()
38 match = i; in handler()
40 ATF_REQUIRE(match > 0); in handler()
41 printf("match at %zu, symbols %zu\n", match, n); in handler()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp32 bool match = true; in Find() local
34 while (!done && match && parent_arg_die && parent_pos_die) { in Find()
47 match = false; in Find()
53 match = false; in Find()
69 if (match) { in Find()
/freebsd/usr.bin/sed/
H A Dprocess.c85 regmatch_t *match; variable
414 match[0].rm_so != match[0].rm_eo) { in substitute()
422 if (match[0].rm_eo - le) in substitute()
430 s = ps + match[0].rm_eo; in substitute()
431 slen = psl - match[0].rm_eo; in substitute()
432 le = match[0].rm_eo; in substitute()
438 if (match[0].rm_so == match[0].rm_eo) { in substitute()
675 match[0].rm_so = start; in regexec_e()
676 match[0].rm_eo = stop; in regexec_e()
724 } else if (match[no].rm_so != -1 && match[no].rm_eo != -1) { in regsub()
[all …]
/freebsd/crypto/openssh/regress/
H A Dmultipubkey.sh34 for match in no yes ; do
41 if test "$match" = "yes" ; then
50 trace "match $match single key"
56 trace "match $match pubkey + identical cert"
62 trace "match $match multiple public"
70 trace "match $match pubkey + different cert"
/freebsd/sys/ddb/
H A Ddb_main.c109 Elf_Sym *sym, *match; in X_db_search_symbol() local
124 match = NULL; in X_db_search_symbol()
138 match = sym; in X_db_search_symbol()
140 if (match == NULL) in X_db_search_symbol()
141 match = sym; in X_db_search_symbol()
142 else if (ELF_ST_BIND(match->st_info) == STB_LOCAL && in X_db_search_symbol()
144 match = sym; in X_db_search_symbol()
157 *diffp = (match == NULL) ? off : diff; in X_db_search_symbol()
158 return ((c_db_sym_t)match); in X_db_search_symbol()
/freebsd/contrib/netbsd-tests/usr.bin/sdiff/
H A Dd_tabs.out9 …native-connect: sockaddr eq "inet-[127.0.0.1]:53" then | native-fsread: filename match "/usr/lib…
10 native-connect: sockaddr match "inet-\\\[*\\\]:80" then | native-read: permit
11 …native-exit: permit | native-fsread: filename match "/usr/lib…
12 …native-fcntl: cmd eq "F_SETFD" then permit | native-fsread: filename match "/usr/lib…
14 native-fsread: filename match "/<non-existent filename> | native-munmap: permit
30 …native-fsread: filename match "/tmp/lynx-*/." then perm native-fsread: filename match "/tmp/lyn…
45 native-fsread: filename match "/usr/lib/libc.so.*" then <
46 native-fsread: filename match "/usr/lib/libcrypto.so.*" <
47 native-fsread: filename match "/usr/lib/libncurses.so.* <
48 native-fsread: filename match "/usr/lib/libssl.so.*" th <
[all …]
H A Dd_iflags_c1.out9 …native-connect: sockaddr eq "inet-[127.0.0.1]:53" then pe | native-fsread: filename match "/us…
10 native-connect: sockaddr match "inet-\\\[*\\\]:80" then p | native-read: permit
11 …native-exit: permit | native-fsread: filename match "/us…
12 …native-fcntl: cmd eq "F_SETFD" then permit | native-fsread: filename match "/us…
14 native-fsread: filename match "/<non-existent filename>: | native-munmap: permit
29 native-fsread: filename match "/tmp/lynx-*/." then permit (
44 native-fsread: filename match "/usr/lib/libc.so.*" then p (
45 native-fsread: filename match "/usr/lib/libcrypto.so.*" t (
46 native-fsread: filename match "/usr/lib/libncurses.so.*" (
47 native-fsread: filename match "/usr/lib/libssl.so.*" then (
[all …]
H A Dd_same.out5 …native-connect: sockaddr match "inet-\\\[*\\\]:80" then per native-connect: sockaddr match "…
9 …native-fsread: filename match "/<non-existent filename>: *" native-fsread: filename match "/…
24 …native-fsread: filename match "/tmp/lynx-*/." then permit native-fsread: filename match "/…
30 …native-fsread: filename match "/usr/lib/libc.so.*" then per native-fsread: filename match "/…
31 …native-fsread: filename match "/usr/lib/libcrypto.so.*" the native-fsread: filename match "/…
32 …native-fsread: filename match "/usr/lib/libncurses.so.*" th native-fsread: filename match "/…
33 …native-fsread: filename match "/usr/lib/libssl.so.*" then p native-fsread: filename match "/…
48 …native-fswrite: filename match "/tmp/lynx-*" then permit native-fswrite: filename match "…
H A Dd_flags_w.out9 …native-connect: sockaddr eq "inet-[127.0.0.1]:53" then pe | native-fsread: filename match "/us…
10 native-connect: sockaddr match "inet-\\\[*\\\]:80" then p | native-read: permit
11 …native-exit: permit | native-fsread: filename match "/us…
12 …native-fcntl: cmd eq "F_SETFD" then permit | native-fsread: filename match "/us…
14 native-fsread: filename match "/<non-existent filename>: | native-munmap: permit
30 …native-fsread: filename match "/tmp/lynx-*/." then permit native-fsread: filename match "/tm…
45 native-fsread: filename match "/usr/lib/libc.so.*" then p <
46 native-fsread: filename match "/usr/lib/libcrypto.so.*" t <
47 native-fsread: filename match "/usr/lib/libncurses.so.*" <
48 native-fsread: filename match "/usr/lib/libssl.so.*" then <
[all …]
/freebsd/usr.bin/sdiff/tests/
H A Dd_tabs.out9 …native-connect: sockaddr eq "inet-[127.0.0.1]:53" the | native-fsread: filename match "/usr/lib/l…
10 native-connect: sockaddr match "inet-\\\[*\\\]:80" th | native-read: permit
11 …native-exit: permit | native-fsread: filename match "/usr/lib/l…
12 …native-fcntl: cmd eq "F_SETFD" then permit | native-fsread: filename match "/usr/lib/l…
14 native-fsread: filename match "/<non-existent filenam | native-munmap: permit
30 …native-fsread: filename match "/tmp/lynx-*/." then pe native-fsread: filename match "/tmp/lynx-…
45 native-fsread: filename match "/usr/lib/libc.so.*" th <
46 native-fsread: filename match "/usr/lib/libcrypto.so. <
47 native-fsread: filename match "/usr/lib/libncurses.so <
48 native-fsread: filename match "/usr/lib/libssl.so.*" <
[all …]
H A Dd_iflags_c1.out9 …native-connect: sockaddr eq "inet-[127.0.0.1]:53" then pe | native-fsread: filename match "/us…
10 native-connect: sockaddr match "inet-\\\[*\\\]:80" then p | native-read: permit
11 …native-exit: permit | native-fsread: filename match "/us…
12 …native-fcntl: cmd eq "F_SETFD" then permit | native-fsread: filename match "/us…
14 native-fsread: filename match "/<non-existent filename>: | native-munmap: permit
29 native-fsread: filename match "/tmp/lynx-*/." then permit (
44 native-fsread: filename match "/usr/lib/libc.so.*" then p (
45 native-fsread: filename match "/usr/lib/libcrypto.so.*" t (
46 native-fsread: filename match "/usr/lib/libncurses.so.*" (
47 native-fsread: filename match "/usr/lib/libssl.so.*" then (
[all …]
/freebsd/tests/sys/netpfil/pf/
H A Dlimits.sh48 atf_check -s exit:0 -o match:'states.*200' \
50 atf_check -s exit:0 -o match:'frags.*100' \
52 atf_check -s exit:0 -o match:'src-nodes.*50' \
54 atf_check -s exit:0 -o match:'table-entries.*25' \
/freebsd/contrib/kyua/engine/
H A Dfilters.cpp272 engine::test_filters::match
278 return match(true, none); in match_test_case()
288 return match(static_cast< bool >(found), found); in match_test_case()
373 engine::test_filters::match match = _filters.match_test_case( in match_test_case() local
375 if (match.first && match.second) in match_test_case()
376 _used_filters.insert(match.second.get()); in match_test_case()
377 return match.first; in match_test_case()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp269 return match(*Node->getLHS()) && match(*Node->getRHS()); in TraverseCXXRewrittenBinaryOperator()
707 match(*N); in match()
709 match(*N); in match()
711 match(*N); in match()
713 match(*N); in match()
715 match(*N); in match()
717 match(*N); in match()
719 match(*N); in match()
1503 match(*NNS); in TraverseNestedNameSpecifier()
1512 match(NNS); in TraverseNestedNameSpecifierLoc()
[all …]

12345678910>>...74