Searched refs:match (Results 226 - 250 of 3319) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl2/mkhybrid/dist/libfile/
H A Dlfile.c119 char *match; local
141 match = softmagic(buf, nbytes);
167 return(match);
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dtests2.d24 assert(array(match("azb",cr4).captures) == ["azb", "azb"]);
54 auto m9 = match("xxqababqyy",cr9);
77 auto mx = match("B",cx);
81 assert(match("BAAA",cx2));
84 auto mx3 = match("AaA",cx3);
88 auto mx4 = match("aaaabc", cx4);
98 auto m9 = match("First\rSecond", cr9);
128 auto m = match(`abc "quoted string with \" inside"z`,free_reg);
142 test_body!match();
169 //empty successful match stil
[all...]
/netbsd-current/tests/net/ndp/
H A Dt_ndp.sh106 atf_check -s not-exit:0 -o ignore -e match:'no entry' rump.ndp -n $IP6SRC
107 atf_check -s not-exit:0 -o ignore -e match:'no entry' rump.ndp -n $IP6DST
129 atf_check -s exit:0 -o match:'basereachable=7s0ms' \
146 atf_check -s not-exit:0 -o ignore -e match:'no entry' rump.ndp -n $IP6SRC
148 atf_check -s exit:0 -o not-match:'permanent' rump.ndp -n $IP6DST
155 atf_check -s not-exit:0 -o ignore -e match:'no entry' rump.ndp -n $IP6SRC
157 atf_check -s exit:0 -o match:"$ONEDAYISH" rump.ndp -n $IP6DST
184 atf_check -s exit:0 -o match:'permanent' rump.ndp -n fc00::10
186 atf_check -s exit:0 -o match:'deleted' rump.ndp -d fc00::10
207 atf_check -s exit:0 -o not-match
[all...]
/netbsd-current/usr.bin/sed/
H A Dprocess.c96 regmatch_t *match; variable
413 if (lastempty || match[0].rm_so != match[0].rm_eo) {
415 re_off = match[0].rm_so;
422 /* Move past this match. */
423 if (match[0].rm_so != match[0].rm_eo) {
424 s += match[0].rm_eo;
425 slen -= match[0].rm_eo;
428 if (match[
[all...]
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Dntp_restrict.c30 * down through the list. Whenever it finds a match it adopts the
31 * match's flags instead. When you hit the point where the sorted
34 * specific match will provide the final set of flags.
200 * and mask 0, which will match any entry. The lists are kept
219 * the same address and mask but differing match flags (mflags).
362 DPRINTF(2, ("doesn't match: ippeerlimit %d\n", res->ippeerlimit));
396 * match_restrict_entry - find an exact match on a restrict list.
398 * Exact match is addr, mask, and mflags all equal.
508 restrict_u *match; local
532 match
612 restrict_u match; local
[all...]
/netbsd-current/external/cddl/osnet/dist/tools/ctf/cvt/
H A Doutput.c158 * A fuzzy match is where we have a local symbol matching the name of a
162 * A weak fuzzy match is when a weak symbol was resolved and matched to
169 iidesc_match_t *match = arg2; local
170 if (streq(iidesc->ii_name, match->iim_name) == 0)
176 if (match->iim_bind == STB_GLOBAL) {
177 match->iim_ret = iidesc;
179 } else if (match->iim_fuzzy && match->iim_ret == NULL) {
180 match->iim_ret = iidesc;
181 /* continue to look for strong match */
201 find_iidesc(tdata_t *td, iidesc_match_t *match) argument
350 iidesc_match_t match; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/contrib/
H A Dupdate-copyright.py281 match = self.comment_re.match (line)
282 if match:
283 line = line[match.end():].lstrip()
286 def is_complete (self, match):
287 holder = match.group (4)
292 def update_copyright (self, dir, filename, filter, file, line, match):
297 intro = match.group (1)
300 after_years = line[match.end (2):].strip()
308 while not self.is_complete (match)
[all...]
/netbsd-current/external/gpl3/gcc/dist/contrib/
H A Dupdate-copyright.py284 match = self.comment_re.match (line)
285 if match:
286 line = line[match.end():].lstrip()
289 def is_complete (self, match):
290 holder = match.group (4)
295 def update_copyright (self, dir, filename, filter, file, line, match):
300 intro = match.group (1)
303 after_years = line[match.end (2):].strip()
311 while not self.is_complete (match)
[all...]
/netbsd-current/tests/fs/ffs/
H A Dt_quotalimit.sh89 -e match:'test 0: write up to hard limit returned 69: Disc quota exceeded' \
93 -o match:'/mnt 3072 B\* 2048 B 3072 B 2:0 2 4 6 ' \
96 -o match:'daemon \+- 3 2 3 2:0 2 4 6' \
136 -e match:'test 1: write beyond the soft limit after grace time returned 69: Disc quota exceeded' \
140 -o match:'/mnt 2560 B\* 2048 B 3072 B none 2 4 6 ' \
143 -o match:'daemon \+- 2 2 3 none 2 4 6' \
183 -e match:'test 2: create file up to hard limit returned 69: Disc quota exceeded' \
187 -o match:'/mnt 3072 B 2048 K 3072 K 6 \* 4 6 2:0' \
190 -o match:'daemon -\+ 3 2048 3072 6 4 6 2:0' \
230 -e match
[all...]
/netbsd-current/external/bsd/mdocml/dist/
H A Ddbm_map.c182 dbm_match(const struct dbm_match *match, const char *str) argument
184 switch (match->type) {
186 return strcmp(str, match->str) == 0;
188 return strcasestr(str, match->str) != NULL;
190 return regexec(match->re, str, 0, NULL, 0) == 0;
/netbsd-current/tests/net/if_tun/
H A Dt_tun.sh76 atf_check -s exit:0 -o match:" $flags " -e ignore -x \
78 atf_check -s exit:0 -o match:" $gw " -e ignore -x \
80 atf_check -s exit:0 -o match:" $iface" -e ignore -x \
108 -o match:"inet ${IP_LOCAL}/32 -> ${IP_REMOTE}" rump.ifconfig tun0
116 -o match:"inet ${IP_REMOTE}/32 -> ${IP_LOCAL}" rump.ifconfig tun0
/netbsd-current/external/apache2/llvm/dist/llvm/utils/
H A Dbugpoint_gisel_reducer.py61 match = re_err.match(err)
62 if not match:
65 return [match.group(1), match.group(2)]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/lit/lit/llvm/
H A Dsubst.py95 match = wordifier.match(word)
96 introducer = match.group(1)
97 word = match.group(2)
104 # name being surrounded by \b word match operators. If the
108 tool_match = expr.match(self.regex)
141 # match in the first place.
/netbsd-current/external/gpl3/gdb.old/dist/sim/cr16/
H A Dgencode.c54 /* Loop over instruction table until a full match is found. */
57 cr16_instruction[i].match, (32 - cr16_instruction[i].match_bits),
78 cr16_instruction[i].mnemonic, cr16_instruction[i].match,
144 cr16_instruction[i].match_bits, cr16_instruction[i].match,
145 cr16_instruction[i].flags, ((BIN(cr16_instruction[i].match, cr16_instruction[i].match_bits))>>(cr16_instruction[i].match_bits)),
147 ((BIN(cr16_instruction[i].match, cr16_instruction[i].match_bits))>>(cr16_instruction[i].match_bits)), (32 - cr16_instruction[i].match_bits));
/netbsd-current/tests/net/ipsec/
H A Dt_ipsec_esp_keys.sh50 atf_check -s exit:0 -o match:'10.0.0.1 10.0.0.2' \
59 atf_check -s exit:0 -o match:'No SAD entries.' \
112 -o match:'syntax error' -e ignore \
116 -o match:'Invalid (key length|argument)' -e ignore \
119 atf_check -s exit:0 -o match:'No SAD entries.' \
H A Dt_ipsec_ah_keys.sh50 atf_check -s exit:0 -o match:'10.0.0.1 10.0.0.2' \
59 atf_check -s exit:0 -o match:'No SAD entries.' \
112 -o match:'syntax error' -e ignore \
116 -o match:'Invalid (key length|argument)' -e ignore \
119 atf_check -s exit:0 -o match:'No SAD entries.' \
/netbsd-current/external/gpl3/gdb/dist/sim/cr16/
H A Dgencode.c55 /* Loop over instruction table until a full match is found. */
58 cr16_instruction[i].match, (32 - cr16_instruction[i].match_bits),
80 cr16_instruction[i].mnemonic, cr16_instruction[i].match,
147 cr16_instruction[i].match_bits, cr16_instruction[i].match,
148 cr16_instruction[i].flags, ((BIN(cr16_instruction[i].match, cr16_instruction[i].match_bits))>>(cr16_instruction[i].match_bits)),
150 ((BIN(cr16_instruction[i].match, cr16_instruction[i].match_bits))>>(cr16_instruction[i].match_bits)), (32 - cr16_instruction[i].match_bits));
/netbsd-current/external/bsd/openldap/dist/servers/slapd/
H A DmatchedValues.c180 int rc, match; local
183 rc = value_match( &match, a->a_desc, mr, 0,
190 if ( match == 0 ) {
196 if ( match >= 0 ) {
202 if ( match <= 0 ) {
254 int rc, match; local
257 rc = value_match( &match, a->a_desc, mr, 0,
262 if ( match == 0 ) {
306 /* check match */
316 int rc, match; local
[all...]
/netbsd-current/external/bsd/atf/dist/tools/
H A Datf-config_test.sh71 atf_check -s eq:0 -o save:stdout -o match:"${v}" -e empty \
87 atf_check -s eq:0 -o save:stdout -o match:"${v}" -e empty \
104 atf_check -s eq:0 -o save:stdout -o match:'atf_libexecdir' \
105 -o match:'atf_shell' -e empty atf-config atf_libexecdir atf_shell
118 atf_check -s eq:1 -o empty -e match:'Unknown variable.*non_existent' \
131 atf_check -s eq:1 -o empty -e match:'Unknown variable.*non_existent' \
133 atf_check -s eq:1 -o empty -e match:'Unknown variable.*non_existent' \
/netbsd-current/usr.bin/kdump/
H A Dsetemul.c184 const struct emulation *match = NULL; local
188 match = &emulations[i];
193 if (!match) {
199 ectx_update(pid, match);
201 default_emul = match;
206 prev_emul = match;
208 cur_emul = match;
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
H A Dparams.py63 AddFeature('linux-gnu') if re.match(r'^.*-linux-gnu', triple) else None,
64 AddFeature('x86_64-linux') if re.match(r'^x86_64.*-linux', triple) else None,
65 AddFeature('x86_64-apple') if re.match(r'^x86_64.*-apple', triple) else None,
66 AddFeature('target-x86') if re.match(r'^i.86.*', triple) else None,
67 AddFeature('target-x86_64') if re.match(r'^x86_64.*', triple) else None,
68 AddFeature('target-aarch64') if re.match(r'^aarch64.*', triple) else None,
69 AddFeature('target-arm') if re.match(r'^arm.*', triple) else None,
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/
H A Dxmethods.py79 if locus_re.match("global"):
81 [m for m in gdb.xmethods if matcher_re.match(m.name)])
95 matcher_re: The regular expression to match the xmethod matcher
105 if not locus_re.match('progspace'):
109 if not locus_re.match(locus.filename):
114 m for m in locus.xmethods if matcher_re.match(m.name)]
137 if name_re is None or name_re.match(m.name):
154 if name_re.match(m.name):
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/
H A Dxmethods.py81 if locus_re.match("global"):
82 xm_dict[locus_str].extend([m for m in gdb.xmethods if matcher_re.match(m.name)])
96 matcher_re: The regular expression to match the xmethod matcher
106 if not locus_re.match("progspace"):
110 if not locus_re.match(locus.filename):
114 xm_dict[locus_str] = [m for m in locus.xmethods if matcher_re.match(m.name)]
138 if name_re is None or name_re.match(m.name):
155 if name_re.match(m.name):
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp27 // shift amounts may not match. If that's the case let's bailout now..
65 if (!match(Sh0,
74 match(Sh0Op0,
81 if (!match(Sh1, m_Shift(m_Value(X), m_ZExtOrSelf(m_Value(ShAmt1)))))
89 bool HadTwoRightShifts = match(Sh0, m_Shr(m_Value(), m_Value())) &&
90 match(Sh1, m_Shr(m_Value(), m_Value()));
106 !match(Sh0, m_c_BinOp(m_OneUse(m_Value()), m_Value())))
118 if (!match(NewShAmt, m_SpecificInt_ICMP(ICmpInst::Predicate::ICMP_ULT,
129 if (!match(NewShAmt,
192 match(OuterShif
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/
H A Dv3nametest.c55 "set emailAddress: email: [postmaster@example.com] does not match [Postmaster@example.com]",
56 "set emailAddress: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
57 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@example.com]",
58 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
72 "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]",
73 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@example.com]",
74 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
75 "set rfc822Name: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
268 const char *nameincert, int match, const char *name)
272 if (match <
267 check_message(const struct set_name_fn *fn, const char *op, const char *nameincert, int match, const char *name) argument
293 int match, ret; local
[all...]

Completed in 193 milliseconds

1234567891011>>