Home
last modified time | relevance | path

Searched refs:matched (Results 1 – 25 of 815) sorted by relevance

12345678910>>...33

/netbsd-src/external/gpl2/mkhybrid/dist/libfile/
H A Dsoftmagic.c243 int matched; in magcheck() local
299 matched = 1; in magcheck()
303 matched = v != l; in magcheck()
306 v, l, matched); in magcheck()
310 matched = v == l; in magcheck()
313 v, l, matched); in magcheck()
318 matched = v > l; in magcheck()
321 v, l, matched); in magcheck()
324 matched = (Int32_t) v > (Int32_t) l; in magcheck()
327 (Int32_t)v, (Int32_t)l, matched); in magcheck()
[all …]
/netbsd-src/external/bsd/less/dist/
H A Dpattern.c301 int matched; in match_pattern1() local
307 matched = match(tpattern, strlen(tpattern), line, line_len, &sp, &ep, nsp); in match_pattern1()
315 matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0; in match_pattern1()
316 if (matched) in match_pattern1()
333 matched = !regexec(pattern, line, RM_COUNT, rm, flags); in match_pattern1()
334 if (matched) in match_pattern1()
371 matched = (mcount > 0); in match_pattern1()
394 matched = (mcount > 0); in match_pattern1()
395 if (matched) in match_pattern1()
418 matched = (re_exec(line) == 1); in match_pattern1()
[all …]
/netbsd-src/usr.bin/vgrind/
H A Dregexp.c341 * characters matched will be copied into
351 * character matched.
362 bool matched; /* a temporary bool */ in expmatch() local
368 matched = false; in expmatch()
376 matched = !STRNCMP (s, SSTR(cs), SCNT(cs)); in expmatch()
377 if (matched) { in expmatch()
390 matched = 1; /* indicate a successful match */ in expmatch()
404 if (matched) in expmatch()
419 /* the subexpression matched */ in expmatch()
420 matched in expmatch()
[all...]
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-monitor/
H A Dcompare.c38 Entry *e, *matched = NULL; in monitor_back_compare() local
42 monitor_cache_dn2entry( op, rs, &op->o_req_ndn, &e, &matched ); in monitor_back_compare()
45 if ( matched ) { in monitor_back_compare()
46 if ( !access_allowed_mask( op, matched, in monitor_back_compare()
52 rs->sr_matched = matched->e_dn; in monitor_back_compare()
56 if ( matched ) { in monitor_back_compare()
57 monitor_cache_release( mi, matched ); in monitor_back_compare()
H A Dmodify.c43 Entry *matched; in monitor_back_modify() local
49 monitor_cache_dn2entry( op, rs, &op->o_req_ndn, &e, &matched ); in monitor_back_modify()
52 if ( matched ) { in monitor_back_modify()
53 if ( !access_allowed_mask( op, matched, in monitor_back_modify()
59 rs->sr_matched = matched->e_dn; in monitor_back_modify()
63 if ( matched != NULL ) { in monitor_back_modify()
65 monitor_cache_release( mi, matched ); in monitor_back_modify()
H A Dsearch.c174 Entry *e = NULL, *matched = NULL; in monitor_back_search() local
182 monitor_cache_dn2entry( op, rs, &op->o_req_ndn, &e, &matched ); in monitor_back_search()
185 if ( matched ) { in monitor_back_search()
186 if ( !access_allowed_mask( op, matched, in monitor_back_search()
192 rs->sr_matched = matched->e_dn; in monitor_back_search()
197 if ( matched ) { in monitor_back_search()
198 monitor_cache_release( mi, matched ); in monitor_back_search()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dregex.tcc87 if (!__it.matched) in __regex_algo_impl()
93 __pre.matched = false; in __regex_algo_impl()
96 __suf.matched = false; in __regex_algo_impl()
104 __pre.matched = (__pre.first != __pre.second); in __regex_algo_impl()
107 __suf.matched = (__suf.first != __suf.second); in __regex_algo_impl()
369 if (__sub.matched) in format()
431 if (__sub.matched) in format()
437 if (__sub.matched) in format()
525 if (_M_match[0].matched) in operator ++()
543 __glibcxx_assert(_M_match[0].matched); in operator ++()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dregex.tcc87 if (!__it.matched) in __regex_algo_impl()
93 __pre.matched = false; in __regex_algo_impl()
96 __suf.matched = false; in __regex_algo_impl()
104 __pre.matched = (__pre.first != __pre.second); in __regex_algo_impl()
107 __suf.matched = (__suf.first != __suf.second); in __regex_algo_impl()
369 if (__sub.matched) in format()
431 if (__sub.matched) in format()
437 if (__sub.matched) in format()
525 if (_M_match[0].matched) in operator ++()
543 __glibcxx_assert(_M_match[0].matched); in operator ++()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_suppressions.cpp146 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions() local
148 suppression_ctx->GetMatched(&matched); in PrintMatchedSuppressions()
149 if (!matched.size()) in PrintMatchedSuppressions()
152 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions()
153 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions()
156 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions()
157 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count), in PrintMatchedSuppressions()
158 matched[i]->type, matched[i]->templ); in PrintMatchedSuppressions()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_suppressions.cc153 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions() local
155 suppression_ctx->GetMatched(&matched); in PrintMatchedSuppressions()
156 if (!matched.size()) in PrintMatchedSuppressions()
159 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions()
160 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions()
163 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions()
164 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count), in PrintMatchedSuppressions()
165 matched[i]->type, matched[i]->templ); in PrintMatchedSuppressions()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_suppressions.cc155 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions() local
157 suppression_ctx->GetMatched(&matched); in PrintMatchedSuppressions()
158 if (!matched.size()) in PrintMatchedSuppressions()
161 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions()
162 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions()
165 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions()
166 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count), in PrintMatchedSuppressions()
167 matched[i]->type, matched[i]->templ); in PrintMatchedSuppressions()
/netbsd-src/usr.sbin/user/
H A Dmain.c78 int matched; in main() local
82 for (matched = i = 0 ; i < cmdp->c_wc && i < MaxCmdWords ; i++) { in main()
86 matched += 1; in main()
92 if (matched == cmdp->c_wc) { in main()
93 return (*cmdp->c_func)(argc - (matched - 1), argv + (matched - 1)); in main()
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/man/
H A Dhelp2man366 my $matched = '';
372 $matched .= $& if %append;
382 $matched .= $& if %append;
395 $matched .= $& if %append;
403 $matched .= $& if %append;
411 $matched .= $& if %append;
420 $matched .= $& if %append;
428 $matched .= $& if %append;
451 if ($matched =~ $pat)
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/man/
H A Dhelp2man366 my $matched = '';
372 $matched .= $& if %append;
382 $matched .= $& if %append;
395 $matched .= $& if %append;
403 $matched .= $& if %append;
411 $matched .= $& if %append;
420 $matched .= $& if %append;
428 $matched .= $& if %append;
451 if ($matched =~ $pat)
/netbsd-src/sys/arch/arc/arc/
H A Dplatform.c58 int i, rv, matched = -1, match = 0, ambiguous_match = 0; in ident_platform() local
64 matched = i; in ident_platform()
73 print_platform(plattab[matched]); in ident_platform()
75 if (i == matched) in ident_platform()
87 print_platform(plattab[matched]); in ident_platform()
91 platform = plattab[matched]; in ident_platform()
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Doneliners_examples.txt8 dtrace: description 'proc:::exec-success ' matched 1 probe
25 dtrace: description 'syscall::open*:entry ' matched 2 probes
50 dtrace: description 'syscall:::entry ' matched 228 probes
65 dtrace: description 'syscall:::entry ' matched 228 probes
87 dtrace: description 'syscall:::entry ' matched 228 probes
104 dtrace: description 'sysinfo:::readch ' matched 4 probes
121 dtrace: description 'sysinfo:::writech ' matched 4 probes
142 dtrace: description 'sysinfo:::readch ' matched 4 probes
171 dtrace: description 'sysinfo:::writech ' matched 4 probes
220 dtrace: description 'vminfo:::pgpgin ' matched 1 probe
[all …]
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Doneliners_examples.txt8 dtrace: description 'proc:::exec-success ' matched 1 probe
25 dtrace: description 'syscall::open*:entry ' matched 2 probes
50 dtrace: description 'syscall:::entry ' matched 228 probes
65 dtrace: description 'syscall:::entry ' matched 228 probes
87 dtrace: description 'syscall:::entry ' matched 228 probes
104 dtrace: description 'sysinfo:::readch ' matched 4 probes
121 dtrace: description 'sysinfo:::writech ' matched 4 probes
142 dtrace: description 'sysinfo:::readch ' matched 4 probes
171 dtrace: description 'sysinfo:::writech ' matched 4 probes
220 dtrace: description 'vminfo:::pgpgin ' matched 1 probe
[all …]
/netbsd-src/share/locale/ctype/
H A Dgen_ctype_utf8.pl173 my $matched;
177 $matched = 1;
181 $matched = 1;
185 $matched = 1;
195 $matched = 1;
202 $matched = 1;
216 push @{ $info->{SPECIAL} }, $code unless $matched;
225 $matched = 1;
/netbsd-src/external/mpl/dhcp/dist/relay/tests/
H A Drelay_unittests.c127 struct interface_info *matched; in ATF_TC_BODY() local
133 matched = 0; in ATF_TC_BODY()
140 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len); in ATF_TC_BODY()
187 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len); in ATF_TC_BODY()
204 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len); in ATF_TC_BODY()
224 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len); in ATF_TC_BODY()
269 ret = strip_relay_agent_options(&ifaces, &matched, &u.packet, 4095); in ATF_TC_BODY()
/netbsd-src/usr.bin/systat/
H A Ddisks.c89 int matched; in drvselect() local
105 matched = 0; in drvselect()
111 matched = 1; in drvselect()
113 if (matched == 0) in drvselect()
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dfnmatch_loop.c240 goto matched; in FCT()
288 goto matched; in FCT()
291 goto matched; in FCT()
306 goto matched; in FCT()
339 goto matched; in FCT()
403 goto matched; in FCT()
455 goto matched; in FCT()
544 goto matched; in FCT()
551 goto matched; in FCT()
573 goto matched; in FCT()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dip_match.c281 int matched; in ip_match_execute() local
313 matched = 0; in ip_match_execute()
317 if (!matched) in ip_match_execute()
318 matched = (*ap >= bp[0] && *ap <= bp[1]); in ip_match_execute()
323 if (!matched) in ip_match_execute()
324 matched = (*ap == *bp); in ip_match_execute()
340 if (matched == 0) in ip_match_execute()
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Duser_acl.c72 int matched; in check_user_acl_byuid() local
110 if ((matched = string_list_match(list, name)) == 0) { in check_user_acl_byuid()
119 return (matched ? 0 : vstring_str(who)); in check_user_acl_byuid()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dfnmatch_loop.c237 goto matched; in FCT()
285 goto matched; in FCT()
288 goto matched; in FCT()
303 goto matched; in FCT()
336 goto matched; in FCT()
400 goto matched; in FCT()
452 goto matched; in FCT()
541 goto matched; in FCT()
548 goto matched; in FCT()
570 goto matched; in FCT()
[all …]
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-mdb/
H A Dsearch.c59 Entry **matched, in deref_base() argument
73 *matched = e; in deref_base()
116 mdb_entry_return( op, *matched ); in deref_base()
144 Entry *matched, *a; in search_aliases() local
210 a = deref_base( op, rs, a, &matched, isc->mt, in search_aliases()
232 } else if (matched) { in search_aliases()
236 mdb_entry_return( op, matched ); in search_aliases()
434 Entry *matched = NULL; in mdb_search() local
502 matched = e; in mdb_search()
516 if ( matched && is_entry_alias( matched )) { in mdb_search()
[all …]

12345678910>>...33