Symbol: nmatch
crypto/krb5/src/util/support/regex.cpp
104
for (i = 0; i < nmatch; i++) {
crypto/krb5/src/util/support/regex.cpp
79
k5_regexec(regex_t *preg, const char *string, size_t nmatch,
crypto/openssl/ssl/ssl_local.h
2848
__owur uint16_t tls1_shared_group(SSL_CONNECTION *s, int nmatch);
crypto/openssl/ssl/t1_lib.c
1004
uint16_t tls1_shared_group(SSL_CONNECTION *s, int nmatch)
crypto/openssl/ssl/t1_lib.c
1014
if (nmatch == -2) {
crypto/openssl/ssl/t1_lib.c
1030
nmatch = 0;
crypto/openssl/ssl/t1_lib.c
1069
if (nmatch == k)
crypto/openssl/ssl/t1_lib.c
1073
if (nmatch == -1)
crypto/openssl/ssl/t1_lib.c
3479
size_t i, j, nmatch = 0;
crypto/openssl/ssl/t1_lib.c
3489
nmatch++;
crypto/openssl/ssl/t1_lib.c
3496
return nmatch;
crypto/openssl/ssl/t1_lib.c
3504
size_t nmatch;
crypto/openssl/ssl/t1_lib.c
3532
nmatch = tls12_shared_sigalgs(s, NULL, pref, preflen, allow, allowlen);
crypto/openssl/ssl/t1_lib.c
3533
if (nmatch) {
crypto/openssl/ssl/t1_lib.c
3534
if ((salgs = OPENSSL_malloc(nmatch * sizeof(*salgs))) == NULL)
crypto/openssl/ssl/t1_lib.c
3536
nmatch = tls12_shared_sigalgs(s, salgs, pref, preflen, allow, allowlen);
crypto/openssl/ssl/t1_lib.c
3541
s->shared_sigalgslen = nmatch;
lib/libc/regex/engine.c
103
static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
lib/libc/regex/engine.c
188
size_t nmatch,
lib/libc/regex/engine.c
211
nmatch = 0;
lib/libc/regex/engine.c
304
if (nmatch == 0 && !g->backrefs)
lib/libc/regex/engine.c
318
if (nmatch == 1 && !g->backrefs)
lib/libc/regex/engine.c
382
if (nmatch > 0) {
lib/libc/regex/engine.c
386
if (nmatch > 1) {
lib/libc/regex/engine.c
388
for (i = 1; i < nmatch; i++)
lib/libc/regex/regexec.c
203
size_t nmatch,
lib/libc/regex/regexec.c
222
return(mmatcher(g, string, nmatch, pmatch, eflags));
lib/libc/regex/regexec.c
224
return(smatcher(g, string, nmatch, pmatch, eflags));
lib/libc/regex/regexec.c
226
return(lmatcher(g, string, nmatch, pmatch, eflags));
lib/libiconv_modules/ISO2022/citrus_iso2022.c
582
int i, cur, nmatch;
lib/libiconv_modules/ISO2022/citrus_iso2022.c
614
nmatch = seqmatch(string, n, sp);
lib/libiconv_modules/ISO2022/citrus_iso2022.c
615
if (sp->len == nmatch && n >= (size_t)(sp->len))
lib/libiconv_modules/ISO2022/citrus_iso2022.c
690
nmatch = seqmatch(string, n, sp);
lib/libiconv_modules/ISO2022/citrus_iso2022.c
691
if (!nmatch)
lib/libiconv_modules/ISO2022/citrus_iso2022.c
699
if ((size_t)(nmatch) == n) {
lib/libiconv_modules/ISO2022/citrus_iso2022.c
705
if (nmatch == sp->len) {
lib/libpfctl/libpfctl.c
3921
struct pfr_addr *addrs, int size, int *nmatch, int flags)
lib/libpfctl/libpfctl.c
3954
if (nmatch)
lib/libpfctl/libpfctl.c
3955
*nmatch = attrs.total_count;
lib/libpfctl/libpfctl.c
3962
struct pfr_addr *addrs, int size, int *nmatch, int flags)
lib/libpfctl/libpfctl.c
3969
if (nmatch)
lib/libpfctl/libpfctl.c
3970
*nmatch = 0;
lib/libpfctl/libpfctl.c
3978
if (nmatch)
lib/libpfctl/libpfctl.c
3979
*nmatch += partial_match;
lib/libpfctl/libpfctl.h
601
struct pfr_addr *addr, int size, int *nmatch, int flags);
libexec/bootpd/getif.c
37
static int nmatch(u_char *ca, u_char *cb);
libexec/bootpd/getif.c
85
m = nmatch((u_char *)addrp, (u_char *)&(sip->sin_addr));
sbin/pfctl/pfctl_radix.c
215
int *nmatch, int flags)
sbin/pfctl/pfctl_radix.c
224
ret = pfctl_test_addrs(pfh, tbl, addr, size, nmatch, flags);
sbin/pfctl/pfctl_table.c
134
int rv = 0, flags = 0, nmatch = 0;
sbin/pfctl/pfctl_table.c
359
&nmatch, flags));
sbin/pfctl/pfctl_table.c
360
xprintf(opts, "%d/%d addresses match", nmatch, b.pfrb_size);
sbin/pfctl/pfctl_table.c
373
if (nmatch < b.pfrb_size)
sys/netpfil/pf/pf_table.c
508
int *nmatch, int flags)
sys/netpfil/pf/pf_table.c
537
if (nmatch != NULL)
sys/netpfil/pf/pf_table.c
538
*nmatch = xmatch;
usr.bin/grep/util.c
438
litexec(const struct pat *pat, const char *string, size_t nmatch,
usr.bin/grep/util.c
471
if (nmatch > 0) {
usr.bin/grep/util.c
474
if (++idx == nmatch)
usr.bin/grep/util.c
482
if (n > 0 && nmatch > 0)
usr.bin/grep/util.c
483
for (n = idx; n < nmatch; ++n)
usr.bin/grep/util.c
72
size_t nmatch, regmatch_t pmatch[]);
usr.bin/sort/sort.c
625
size_t len, nmatch;
usr.bin/sort/sort.c
629
nmatch = 4;
usr.bin/sort/sort.c
635
if (regexec(&re, s, nmatch, pmatch, 0) != 0)
usr.bin/sort/sort.c
781
size_t len, nmatch;
usr.bin/sort/sort.c
784
nmatch = 4;
usr.bin/sort/sort.c
791
if (regexec(&re, s, nmatch, pmatch, 0) != 0)
usr.sbin/ppp/command.c
1042
int nmatch;
usr.sbin/ppp/command.c
1048
nmatch = 0;
usr.sbin/ppp/command.c
1055
nmatch++;
usr.sbin/ppp/command.c
1062
nmatch++;
usr.sbin/ppp/command.c
1067
*pmatch = nmatch;
usr.sbin/ppp/command.c
1096
int nmatch;
usr.sbin/ppp/command.c
1100
cmd = FindCommand(cmds, argv[argn], &nmatch);
usr.sbin/ppp/command.c
1101
if (nmatch > 1)