| /freebsd-14-stable/usr.bin/vgrind/ |
| HD | regexp.c | 351 bool matched; /* a temporary bool */ in expmatch() local 357 matched = false; in expmatch() 365 matched = !STRNCMP (s, SSTR(cs), SCNT(cs)); in expmatch() 366 if (matched) { in expmatch() 379 matched = 1; /* indicate a successful match */ in expmatch() 393 if (matched) in expmatch() 409 matched = 1; in expmatch() 414 matched = 0; in expmatch() 418 matched = 1; /* indicate a successful match */ in expmatch() 517 matched = 1; in expmatch() [all …]
|
| /freebsd-14-stable/contrib/less/ |
| HD | pattern.c | 300 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 …]
|
| /freebsd-14-stable/usr.bin/killall/ |
| HD | killall.c | 131 int matched; in main() local 345 matched = 1; in main() 348 matched = 0; in main() 352 matched = 0; in main() 367 matched = 0; in main() 371 matched = 0; in main() 375 matched = 0; in main() 376 if (matched == 0) in main() 379 matched = 0; in main() 393 matched = 1; in main() [all …]
|
| /freebsd-14-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| HD | tsan_suppressions.cpp | 148 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions() local 150 suppression_ctx->GetMatched(&matched); in PrintMatchedSuppressions() 151 if (!matched.size()) in PrintMatchedSuppressions() 154 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions() 155 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions() 158 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions() 159 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count), in PrintMatchedSuppressions() 160 matched[i]->type, matched[i]->templ); in PrintMatchedSuppressions()
|
| /freebsd-14-stable/contrib/bmake/ |
| HD | str.c | 326 bool asterisk, matched; in Str_Match() local 335 matched = false; in Str_Match() 359 res.matched = neg; in Str_Match() 385 matched = true; in Str_Match() 389 if (!matched) in Str_Match() 392 res.matched = *str == '\0'; in Str_Match() 397 if (!matched) { in Str_Match() 403 res.matched = true; in Str_Match() 414 res.matched = true; in Str_Match()
|
| /freebsd-14-stable/usr.bin/grep/ |
| HD | util.c | 69 static bool procmatches(struct mprintc *mc, struct parsec *pc, bool matched); 131 bool matched, ok; in grep_tree() local 134 matched = false; in grep_tree() 192 matched = true; in grep_tree() 200 return (matched); in grep_tree() 272 procmatches(struct mprintc *mc, struct parsec *pc, bool matched) in procmatches() argument 290 if (matched) { in procmatches() 509 bool lastmatched, matched; in procline() local 537 matched = false; in procline() 601 matched = true; in procline() [all …]
|
| HD | grep.c | 320 bool matched; local 707 matched = grep_tree(aargv); 709 for (matched = false; aargc--; ++aargv) { 713 matched = true; 717 matched = !matched; 723 exit(matched ? (file_err ? (qflag ? 0 : 2) : 0) : (file_err ? 2 : 1));
|
| /freebsd-14-stable/crypto/openssl/doc/man3/ |
| HD | SSL_set1_host.pod | 47 from the peer certificate that matched one of the reference 49 matched in the peer certificate may be a wildcard name. When one 52 rather than a fixed name, the matched peer name may be a sub-domain 71 matched. Otherwise, it returns the matched peername. To determine 80 matched in the certificate (which might be a wildcard) is retrieved, 96 /* Name checks were in scope and matched the peername */
|
| HD | SSL_CTX_dane_enable.pod | 95 the matched DANE trust-anchor after successful connection completion. 97 0 if an EE TLSA record directly matched the leaf certificate, or a positive 98 number indicating the depth at which a TA record matched an issuer certificate. 103 If the B<mcert> argument is not B<NULL> and a TLSA record matched a chain 111 If no TLSA records directly matched any elements of the certificate chain, but 122 matched the peer certificate chain. 176 nonnegative value indicates the chain depth at which the TLSA record matched a 191 The actual name matched in the certificate (which might be a wildcard) is 311 depth ? "matched TA certificate" : "matched EE certificate", 315 /* Name checks were in scope and matched the peername */ [all …]
|
| /freebsd-14-stable/crypto/heimdal/kuser/ |
| HD | copy_cred_cache.c | 89 unsigned int matched; in copy_cred_cache() local 152 matchfunc, &ctx, &matched); in copy_cred_cache() 157 if(matched == 0) in copy_cred_cache() 162 return matched == 0; in copy_cred_cache()
|
| /freebsd-14-stable/sys/dev/usb/input/ |
| HD | atp.c | 304 boolean_t matched; /* to track pspans as they match against strokes. */ member 342 boolean_t matched; member 604 boolean_t matched; /*to track components as they match against pspans.*/ member 619 boolean_t matched; /* to track match against fingers.*/ member 1260 spans[i].matched = false; /* not yet matched against a stroke */ in fg_detect_pspans() 1314 fingers[n_fingers].matched = false; in wsp_interpret_sensor_data() 1406 if (strokep->components[axis].matched) in fg_match_strokes_against_pspans() 1410 if (pspans[i].matched) in fg_match_strokes_against_pspans() 1417 strokep->components[axis].matched = true; in fg_match_strokes_against_pspans() 1423 pspans[i].matched = true; in fg_match_strokes_against_pspans() [all …]
|
| /freebsd-14-stable/contrib/file/src/ |
| HD | softmagic.c | 2106 int matched; in magiccheck() local 2164 matched = 1; in magiccheck() 2168 matched = isunordered(fl, fv) ? 1 : fv != fl; in magiccheck() 2172 matched = isunordered(fl, fv) ? 0 : fv == fl; in magiccheck() 2176 matched = isgreater(fv, fl); in magiccheck() 2180 matched = isless(fv, fl); in magiccheck() 2188 return matched; in magiccheck() 2197 matched = 1; in magiccheck() 2201 matched = isunordered(dv, dl) ? 1 : dv != dl; in magiccheck() 2205 matched = isunordered(dv, dl) ? 0 : dv == dl; in magiccheck() [all …]
|
| /freebsd-14-stable/contrib/kyua/engine/ |
| HD | filters.cpp | 299 engine::test_filters::difference(const std::set< test_filter >& matched) const in difference() 302 matched.begin(), matched.end())); in difference() 306 matched.begin(), matched.end(), in difference()
|
| /freebsd-14-stable/contrib/diff/lib/ |
| HD | exclude.c | 164 bool matched = ((*matcher) (pattern, f, options) == 0); in excluded_filename() local 168 for (p = f; *p && ! matched; p++) in excluded_filename() 170 matched = ((*matcher) (pattern, p + 1, options) == 0); in excluded_filename() 172 excluded ^= matched; in excluded_filename()
|
| /freebsd-14-stable/sys/dev/pci/ |
| HD | isa_pci.c | 105 int matched = 0; in isab_pci_probe() local 112 matched = 1; in isab_pci_probe() 144 matched = 1; in isab_pci_probe() 152 if (matched) { in isab_pci_probe()
|
| /freebsd-14-stable/usr.sbin/lpr/common_source/ |
| HD | matchjobs.c | 498 int cnt, matched, total; in scanq_jobspec() local 518 matched = match_jobspec(*qent, jspec); in scanq_jobspec() 519 if (!matched) in scanq_jobspec() 547 matched = match_jobspec(*qent, jspec); in scanq_jobspec() 548 if (!matched) in scanq_jobspec()
|
| /freebsd-14-stable/stand/common/ |
| HD | commands.c | 127 int hfd, matched, doindex; in command_help() local 159 matched = doindex; in command_help() 171 if (matched) { in command_help() 177 matched = 1; in command_help() 205 if (!matched) { in command_help()
|
| /freebsd-14-stable/contrib/libarchive/libarchive/test/ |
| HD | test_acl_platform_nfs4.c | 694 int matched; in compare_acls() local 756 for (i = 0, matched = 0; i < n && !matched; i++) { in compare_acls() 761 matched = 1; in compare_acls() 767 assert(matched == 1); in compare_acls() 787 int matched; in compare_entry_acls() local 813 for (i = 0, matched = 0; i < n && !matched; i++) { in compare_entry_acls() 821 matched = 1; in compare_entry_acls() 828 assert(matched == 1); in compare_entry_acls()
|
| HD | test_acl_platform_posix1e.c | 228 int matched; local 259 for (i = 0, matched = 0; i < n && !matched; i++) { 264 matched = 1; 270 assert(matched == 1);
|
| /freebsd-14-stable/usr.sbin/cpucontrol/ |
| HD | intel.c | 235 goto matched; in intel_update() 241 goto matched; in intel_update() 246 matched: in intel_update()
|
| /freebsd-14-stable/contrib/openbsm/libbsm/ |
| HD | bsm_control.c | 261 int i, matched; in au_strtopol() local 270 matched = i = 0; in au_strtopol() 275 matched = 1; in au_strtopol() 280 if (!matched) { in au_strtopol()
|
| /freebsd-14-stable/sys/isa/ |
| HD | isahint.c | 159 goto matched; in isa_hint_device_unit() 173 matched: in isa_hint_device_unit()
|
| /freebsd-14-stable/contrib/pf/authpf/ |
| HD | authpf.c | 473 int matched; in allowed_luser() local 506 matched = 0; in allowed_luser() 523 matched++; in allowed_luser() 545 matched++; in allowed_luser() 551 matched = strcmp(pw->pw_name, buf) == 0 || in allowed_luser() 560 if (matched) in allowed_luser()
|
| /freebsd-14-stable/contrib/googletest/googlemock/src/ |
| HD | gmock-matchers.cc | 395 char matched = matrix.HasEdge(ilhs, irhs); in VerifyMatchMatrix() local 396 element_matched[ilhs] |= matched; in VerifyMatchMatrix() 397 matcher_matched[irhs] |= matched; in VerifyMatchMatrix()
|
| /freebsd-14-stable/contrib/libarchive/libarchive/ |
| HD | archive_match.c | 49 int matched; member 714 struct match *matched; in path_excluded() local 725 matched = NULL; in path_excluded() 728 if (!match->matched && in path_excluded() 733 match->matched = 1; in path_excluded() 734 matched = match; in path_excluded() 748 if (matched != NULL) in path_excluded() 756 if (match->matched && in path_excluded() 882 if (m->matched) in match_list_unmatched_inclusions_next() 1796 m->matched = 1; in match_owner_name_mbs() [all …]
|