Symbol: nmatch
lib/i18n_module/ISO2022/citrus_iso2022.c
582
int i, cur, nmatch;
lib/i18n_module/ISO2022/citrus_iso2022.c
614
nmatch = seqmatch(string, n, sp);
lib/i18n_module/ISO2022/citrus_iso2022.c
615
if (sp->len == nmatch && n >= (size_t)(sp->len))
lib/i18n_module/ISO2022/citrus_iso2022.c
690
nmatch = seqmatch(string, n, sp);
lib/i18n_module/ISO2022/citrus_iso2022.c
691
if (!nmatch)
lib/i18n_module/ISO2022/citrus_iso2022.c
699
if ((size_t)(nmatch) == n) {
lib/i18n_module/ISO2022/citrus_iso2022.c
705
if (nmatch == sp->len) {
lib/libc/tre-regex/regex.h
115
size_t nmatch; /* Length of pmatch[] array. */
lib/libc/tre-regex/regex.h
172
size_t nmatch, regmatch_t pmatch[__restrict_arr], int eflags);
lib/libc/tre-regex/regex.h
187
size_t nmatch, regmatch_t pmatch[], int eflags);
lib/libc/tre-regex/regex.h
196
size_t nmatch, regmatch_t pmatch[], int eflags);
lib/libc/tre-regex/regex.h
203
size_t nmatch, regmatch_t pmatch[], int eflags);
libexec/bootpd/getif.c
39
static int nmatch();
libexec/bootpd/getif.c
92
m = nmatch(addrp, &(sip->sin_addr));
sys/net/pf/pf_table.c
520
int *nmatch, int flags)
sys/net/pf/pf_table.c
551
if (nmatch != NULL)
sys/net/pf/pf_table.c
552
*nmatch = xmatch;
tools/regression/lib/libc-regex/testregex.c
1078
extract(int* tabs, char* spec, char* re, char* s, char* ans, char* msg, char* accept, regmatch_t* match, int nmatch, int nsub, unsigned long skip, unsigned long level, unsigned long test)
tools/regression/lib/libc-regex/testregex.c
1125
matchprint(match, nmatch, nsub, NiL, test);
tools/regression/lib/libc-regex/testregex.c
1138
catchfree(regex_t* preg, int flags, int* tabs, char* spec, char* re, char* s, char* ans, char* msg, char* accept, regmatch_t* match, int nmatch, int nsub, unsigned long skip, unsigned long level, unsigned long test)
tools/regression/lib/libc-regex/testregex.c
1222
int nmatch;
tools/regression/lib/libc-regex/testregex.c
1532
nmatch = 20;
tools/regression/lib/libc-regex/testregex.c
1538
nmatch = strtol(p, &p, 10);
tools/regression/lib/libc-regex/testregex.c
1539
if (nmatch >= elementsof(match))
tools/regression/lib/libc-regex/testregex.c
1973
if ((j = nmatch) > sizeof(buf))
tools/regression/lib/libc-regex/testregex.c
2021
if (nmatch > nsub)
tools/regression/lib/libc-regex/testregex.c
2022
nmatch = nsub + 1;
tools/regression/lib/libc-regex/testregex.c
2127
eret = regnexec(&preg, s, nexec, nmatch, match, eflags);
tools/regression/lib/libc-regex/testregex.c
2134
eret = regexec(&preg, s, nmatch, match, eflags);
tools/regression/lib/libc-regex/testregex.c
2138
eret = regexec(&preg, s, nmatch, match, eflags);
tools/regression/lib/libc-regex/testregex.c
2147
eret = regsubexec(&preg, s, nmatch, match);
tools/regression/lib/libc-regex/testregex.c
2151
eret = regsubexec(&preg, s, nmatch, match);
tools/regression/lib/libc-regex/testregex.c
2174
skip = extract(tabs, line, re, s, ans, msg, NiL, match, nmatch, nsub, skip, level, test|TEST_DELIMIT);
tools/regression/lib/libc-regex/testregex.c
2203
skip = extract(tabs, line, re, s, ans, msg, NiL, match, nmatch, nsub, skip, level, test|TEST_DELIMIT);
tools/regression/lib/libc-regex/testregex.c
2207
matchprint(match, nmatch, nsub, NiL, test);
tools/regression/lib/libc-regex/testregex.c
2233
matchprint(match, nmatch, nsub, NiL, test);
tools/regression/lib/libc-regex/testregex.c
2237
else if (matchcheck(match, nmatch, nsub, ans, re, s, nstr, flags, test))
tools/regression/lib/libc-regex/testregex.c
2256
skip = extract(tabs, line, re, s, ans, msg, NiL, match, nmatch, nsub, skip, level, test|TEST_OK);
tools/regression/lib/libc-regex/testregex.c
2259
skip = extract(tabs, line, re, s, ans, msg, NiL, match, nmatch, nsub, skip, level, test|TEST_DELIMIT);
tools/regression/lib/libc-regex/testregex.c
858
matchprint(regmatch_t* match, int nmatch, int nsub, char* ans, unsigned long test)
tools/regression/lib/libc-regex/testregex.c
862
for (; nmatch > nsub + 1; nmatch--)
tools/regression/lib/libc-regex/testregex.c
863
if ((match[nmatch-1].rm_so != -1 || match[nmatch-1].rm_eo != -1) && (!(test & TEST_IGNORE_POSITION) || match[nmatch-1].rm_so >= 0 && match[nmatch-1].rm_eo >= 0))
tools/regression/lib/libc-regex/testregex.c
865
for (i = 0; i < nmatch; i++)
tools/regression/lib/libc-regex/testregex.c
882
matchcheck(regmatch_t* match, int nmatch, int nsub, char* ans, char* re, char* s, int len, int flags, unsigned long test)
tools/regression/lib/libc-regex/testregex.c
891
for (i = 0, p = ans; i < nmatch && *p; i++)
tools/regression/lib/libc-regex/testregex.c
952
matchprint(match, nmatch, nsub, ans, test);
tools/regression/lib/libc-regex/testregex.c
957
for (; i < nmatch; i++)
tools/regression/lib/libc-regex/testregex.c
971
matchprint(match, nmatch, nsub, ans, test);
tools/regression/lib/libc-regex/testregex.c
977
if (!(test & TEST_IGNORE_OVER) && match[nmatch].rm_so != state.NOMATCH.rm_so)
tools/regression/lib/libc-regex/testregex.c
982
matchprint(match, nmatch + 1, nsub, NiL, test);
usr.bin/sort/sort.c
652
size_t len, nmatch;
usr.bin/sort/sort.c
656
nmatch = 4;
usr.bin/sort/sort.c
662
if (regexec(&re, s, nmatch, pmatch, 0) != 0)
usr.bin/sort/sort.c
808
size_t len, nmatch;
usr.bin/sort/sort.c
811
nmatch = 4;
usr.bin/sort/sort.c
818
if (regexec(&re, s, nmatch, pmatch, 0) != 0)
usr.sbin/pfctl/pfctl_radix.c
325
int *nmatch, int flags)
usr.sbin/pfctl/pfctl_radix.c
341
if (nmatch)
usr.sbin/pfctl/pfctl_radix.c
342
*nmatch = io.pfrio_nmatch;
usr.sbin/pfctl/pfctl_table.c
133
int rv = 0, flags = 0, nmatch = 0;
usr.sbin/pfctl/pfctl_table.c
330
&nmatch, flags));
usr.sbin/pfctl/pfctl_table.c
331
xprintf(opts, "%d/%d addresses match", nmatch, b.pfrb_size);
usr.sbin/pfctl/pfctl_table.c
344
if (nmatch < b.pfrb_size)
usr.sbin/ppp/command.c
1006
int nmatch;
usr.sbin/ppp/command.c
1012
nmatch = 0;
usr.sbin/ppp/command.c
1019
nmatch++;
usr.sbin/ppp/command.c
1026
nmatch++;
usr.sbin/ppp/command.c
1031
*pmatch = nmatch;
usr.sbin/ppp/command.c
1060
int nmatch;
usr.sbin/ppp/command.c
1064
cmd = FindCommand(cmds, argv[argn], &nmatch);
usr.sbin/ppp/command.c
1065
if (nmatch > 1)