lib/libc/asr/getaddrinfo_async.c
204
for (i = 0; matches[i].family != -1; i++)
lib/libc/asr/getaddrinfo_async.c
209
if (matches[i].family == -1) {
lib/libc/asr/getaddrinfo_async.c
52
static const struct match matches[] = {
lib/libc/asr/getaddrinfo_async.c
545
for (i = 0; matches[i].family != -1; i++) {
lib/libc/asr/getaddrinfo_async.c
546
if (matches[i].family != sa->sa_family ||
lib/libc/asr/getaddrinfo_async.c
553
proto = matches[i].protocol;
lib/libc/asr/getaddrinfo_async.c
570
ai->ai_socktype = matches[i].socktype;
lib/libc/asr/getaddrinfo_async.c
62
#define MATCH_FAMILY(a, b) ((a) == matches[(b)].family || (a) == PF_UNSPEC)
lib/libc/asr/getaddrinfo_async.c
63
#define MATCH_PROTO(a, b) ((a) == matches[(b)].protocol || (a) == 0 || matches[(b)].protocol == 0)
lib/libc/asr/getaddrinfo_async.c
65
#define MATCH_SOCKTYPE(a, b) ((a) == matches[(b)].socktype || ((a) == 0 && \
lib/libc/asr/getaddrinfo_async.c
66
matches[(b)].socktype != SOCK_RAW))
lib/libedit/filecomplete.c
265
size_t matches;
lib/libedit/filecomplete.c
267
matches = 0;
lib/libedit/filecomplete.c
269
while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
lib/libedit/filecomplete.c
271
if (matches + 3 >= match_list_len) {
lib/libedit/filecomplete.c
273
while (matches + 3 >= match_list_len)
lib/libedit/filecomplete.c
284
match_list[++matches] = retstr;
lib/libedit/filecomplete.c
294
for (; which <= matches; which++) {
lib/libedit/filecomplete.c
311
match_list[matches + 1] = NULL;
lib/libedit/filecomplete.c
337
fn_display_match_list (EditLine *el, char **matches, size_t num, size_t width)
lib/libedit/filecomplete.c
343
matches++;
lib/libedit/filecomplete.c
358
qsort(matches, num, sizeof(char *), _fn_qsort_string_compare);
lib/libedit/filecomplete.c
369
col == 0 ? "" : " ", (int)width, matches[thisguy]);
lib/libedit/filecomplete.c
397
char **matches;
lib/libedit/filecomplete.c
437
matches = (*attempted_completion_function) (
lib/libedit/filecomplete.c
441
matches = NULL;
lib/libedit/filecomplete.c
443
(over != NULL && !*over && !matches))
lib/libedit/filecomplete.c
444
matches = completion_matches(
lib/libedit/filecomplete.c
450
if (matches) {
lib/libedit/filecomplete.c
459
if (matches[0][0] != '\0') {
lib/libedit/filecomplete.c
462
ct_decode_string(matches[0], &el->el_scratch));
lib/libedit/filecomplete.c
468
if (matches[2] == NULL && strcmp(matches[0], matches[1]) == 0) {
lib/libedit/filecomplete.c
475
ct_decode_string((*app_func)(matches[0]),
lib/libedit/filecomplete.c
484
for(i = 1, maxlen = 0; matches[i]; i++) {
lib/libedit/filecomplete.c
485
match_len = strlen(matches[i]);
lib/libedit/filecomplete.c
517
fn_display_match_list(el, matches,
lib/libedit/filecomplete.c
521
} else if (matches[0][0]) {
lib/libedit/filecomplete.c
536
for (i = 0; matches[i]; i++)
lib/libedit/filecomplete.c
537
free(matches[i]);
lib/libedit/filecomplete.c
538
free(matches);
lib/libedit/filecomplete.c
539
matches = NULL;
lib/libedit/readline.c
1770
rl_display_match_list(char **matches, int len, int max)
lib/libedit/readline.c
1773
fn_display_match_list(e, matches, (size_t)len, (size_t)max);
lib/libz/deflate.c
1761
s->matches = 2; /* clear hash */
lib/libz/deflate.c
1771
if (s->matches < 2)
lib/libz/deflate.c
1772
s->matches++; /* add a pending slide_hash() */
lib/libz/deflate.c
1803
if (s->matches < 2)
lib/libz/deflate.c
1804
s->matches++; /* add a pending slide_hash() */
lib/libz/deflate.c
797
if (s->level == 0 && s->matches != 0) {
lib/libz/deflate.c
798
if (s->matches == 1)
lib/libz/deflate.c
802
s->matches = 0;
lib/libz/deflate.h
256
uInt matches; /* number of string matches in current block */
lib/libz/trees.c
1106
s->matches++;
lib/libz/trees.c
448
s->sym_next = s->matches = 0;
libexec/spamd/sdl.c
375
int matches = 0;
libexec/spamd/sdl.c
382
grow_sdlist(sdnew, matches, sdnewlen);
libexec/spamd/sdl.c
383
sdnew[matches] = sdl;
libexec/spamd/sdl.c
384
matches++;
libexec/spamd/sdl.c
385
sdnew[matches] = NULL;
libexec/spamd/sdl.c
396
int matches = 0;
libexec/spamd/sdl.c
403
grow_sdlist(sdnew, matches, sdnewlen);
libexec/spamd/sdl.c
404
sdnew[matches] = sdl;
libexec/spamd/sdl.c
405
matches++;
libexec/spamd/sdl.c
406
sdnew[matches] = NULL;
libexec/spamd/spamd.c
562
struct sdlist **matches;
libexec/spamd/spamd.c
566
matches = cp->blacklists;
libexec/spamd/spamd.c
567
if (matches == NULL)
libexec/spamd/spamd.c
569
for (; *matches; matches++) {
libexec/spamd/spamd.c
574
if (strlen(matchlists) + strlen(matches[0]->tag) + 1 >= s)
libexec/spamd/spamd.c
578
strlcat(matchlists, matches[0]->tag, s);
libexec/spamd/spamd.c
587
struct sdlist **matches;
libexec/spamd/spamd.c
590
matches = cp->blacklists;
libexec/spamd/spamd.c
591
if (matches == NULL)
libexec/spamd/spamd.c
593
for (; *matches; matches++) {
libexec/spamd/spamd.c
597
used = append_error_string(cp, off, matches[0]->string,
regress/lib/libcrypto/ige/igetest.c
189
unsigned matches;
regress/lib/libcrypto/ige/igetest.c
278
matches=0;
regress/lib/libcrypto/ige/igetest.c
281
++matches;
regress/lib/libcrypto/ige/igetest.c
283
if(matches > sizeof checktext/2+sizeof checktext/100)
regress/lib/libcrypto/ige/igetest.c
289
if(matches < sizeof checktext/2)
regress/lib/libcrypto/ige/igetest.c
308
matches=0;
regress/lib/libcrypto/ige/igetest.c
311
++matches;
regress/lib/libcrypto/ige/igetest.c
313
if(matches > sizeof checktext/100)
regress/lib/libcrypto/ige/igetest.c
332
matches=0;
regress/lib/libcrypto/ige/igetest.c
335
++matches;
regress/lib/libcrypto/ige/igetest.c
337
if(matches > sizeof checktext/100)
regress/lib/libcrypto/ige/igetest.c
356
matches=0;
regress/lib/libcrypto/ige/igetest.c
359
++matches;
regress/lib/libcrypto/ige/igetest.c
361
if(matches > sizeof checktext/100)
regress/sys/kern/pledge/generic/manager.c
122
error = regexec(®ex, output, 2, matches, 0);
regress/sys/kern/pledge/generic/manager.c
135
output[matches[1].rm_eo] = '\0';
regress/sys/kern/pledge/generic/manager.c
136
ret = strtonum(&output[matches[1].rm_so], 0, 255, &errstr);
regress/sys/kern/pledge/generic/manager.c
139
&output[matches[1].rm_so], errstr);
regress/sys/kern/pledge/generic/manager.c
98
regmatch_t matches[2];
sbin/pfctl/pfctl.c
1684
if (++p->matches > 10000)
sbin/pfctl/pfctl.c
1750
if (qi->matches == 0)
sbin/pfctl/pfctl_parser.h
229
int matches;
sys/dev/hid/hid.c
730
uint32_t matches;
sys/dev/hid/hid.c
736
matches = 0;
sys/dev/hid/hid.c
761
if (h.usage == usages[i] && !(matches & (1 << i))) {
sys/dev/hid/hid.c
762
matches |= (1 << i);
sys/dev/hid/hid.c
763
if (matches != (1 << n_usages) - 1)
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
197
.matches = {
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
204
.matches = {
sys/dev/pci/drm/amd/amdgpu/amdgpu_acp.c
211
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
106
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
113
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
120
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
127
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
134
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
141
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
148
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
57
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
64
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
71
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
78
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
85
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
92
.matches = {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_quirks.c
99
.matches = {
sys/dev/pci/drm/drm_linux.c
505
for (i = 0; i < nitems(dsi->matches); i++) {
sys/dev/pci/drm/drm_linux.c
506
slot = dsi->matches[i].slot;
sys/dev/pci/drm/drm_linux.c
509
if (!dmi_match(slot, dsi->matches[i].substr))
sys/dev/pci/drm/drm_linux.c
521
for (dsi = sysid; dsi->matches[0].slot != 0 ; dsi++) {
sys/dev/pci/drm/drm_linux.c
556
for (dsi = sysid; dsi->matches[0].slot != 0 ; dsi++) {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
165
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
171
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
177
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
183
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
189
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
195
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
201
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
207
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
213
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
219
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
225
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
231
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
237
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
243
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
249
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
255
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
261
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
267
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
273
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
281
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
287
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
293
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
301
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
307
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
318
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
326
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
334
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
342
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
350
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
356
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
362
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
368
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
376
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
382
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
393
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
400
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
407
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
413
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
419
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
425
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
431
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
437
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
444
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
450
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
465
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
471
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
477
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
484
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
490
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
496
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
502
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
508
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
515
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
522
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
528
.matches = {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
534
.matches = {
sys/dev/pci/drm/i915/display/intel_crt.c
825
.matches = {
sys/dev/pci/drm/i915/display/intel_crt.c
833
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
534
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
542
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
550
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
558
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
566
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
574
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
582
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
590
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
598
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
606
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
613
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
621
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
629
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
637
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
645
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
653
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
661
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
669
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
677
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
685
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
693
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
701
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
709
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
717
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
725
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
733
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
752
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
760
.matches = {
sys/dev/pci/drm/i915/display/intel_lvds.c
768
.matches = {
sys/dev/pci/drm/i915/display/intel_opregion.c
1088
.matches = {DMI_MATCH(DMI_SYS_VENDOR, "Conrac GmbH"),
sys/dev/pci/drm/i915/display/intel_opregion.c
873
.matches = {
sys/dev/pci/drm/i915/display/intel_quirks.c
135
.matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
sys/dev/pci/drm/i915/display/intel_quirks.c
143
.matches = {DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
sys/dev/pci/drm/i915/display/intel_quirks.c
158
.matches = {DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Google"),
sys/dev/pci/drm/i915/display/intel_quirks.c
166
.matches = {DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Google"),
sys/dev/pci/drm/i915/display/vlv_dsi.c
1870
.matches = {
sys/dev/pci/drm/i915/display/vlv_dsi.c
1881
.matches = {
sys/dev/pci/drm/i915/display/vlv_dsi.c
1892
.matches = {
sys/dev/pci/drm/include/linux/mod_devicetable.h
38
struct dmi_strmatch matches[4];
sys/dev/pci/if_iwmreg.h
6010
struct iwm_scan_offload_profile_match matches[IWM_SCAN_MAX_PROFILES];
sys/dev/pci/if_iwxreg.h
8171
struct iwx_scan_offload_profile_match matches[IWX_SCAN_MAX_PROFILES];
sys/lib/libz/deflate.c
1763
s->matches = 2; /* clear hash */
sys/lib/libz/deflate.c
1773
if (s->matches < 2)
sys/lib/libz/deflate.c
1774
s->matches++; /* add a pending slide_hash() */
sys/lib/libz/deflate.c
1805
if (s->matches < 2)
sys/lib/libz/deflate.c
1806
s->matches++; /* add a pending slide_hash() */
sys/lib/libz/deflate.c
797
if (s->level == 0 && s->matches != 0) {
sys/lib/libz/deflate.c
798
if (s->matches == 1)
sys/lib/libz/deflate.c
802
s->matches = 0;
sys/lib/libz/deflate.h
256
uInt matches; /* number of string matches in current block */
sys/lib/libz/trees.c
1106
s->matches++;
sys/lib/libz/trees.c
448
s->sym_next = s->matches = 0;
usr.bin/calendar/day.c
269
struct match *matches = NULL, *tmp, *tmp2;
usr.bin/calendar/day.c
491
tmp2 = matches;
usr.bin/calendar/day.c
565
matches = tmp;
usr.bin/calendar/day.c
574
return (matches);
usr.bin/less/line.c
494
int matches;
usr.bin/less/line.c
496
if (is_hilited(pos, pos+1, 0, &matches)) {
usr.bin/less/search.c
657
search_range(off_t pos, off_t endpos, int search_type, int matches,
usr.bin/less/search.c
693
return (matches);
usr.bin/less/search.c
724
return (matches);
usr.bin/less/search.c
794
} else if (--matches <= 0) {
usr.bin/make/varmodifiers.c
1065
p2.matches = ereallocarray(NULL, p2.nsub, sizeof(regmatch_t));
usr.bin/make/varmodifiers.c
1068
free(p2.matches);
usr.bin/make/varmodifiers.c
127
regmatch_t *matches;
usr.bin/make/varmodifiers.c
617
xrv = regexec(&pat->re, wp, pat->nsub, pat->matches, 0);
usr.bin/make/varmodifiers.c
623
if (pat->matches[0].rm_so > 0) {
usr.bin/make/varmodifiers.c
625
Buf_AddChars(buf, pat->matches[0].rm_so, wp);
usr.bin/make/varmodifiers.c
658
} else if (pat->matches[n].rm_so == -1 &&
usr.bin/make/varmodifiers.c
659
pat->matches[n].rm_eo == -1) {
usr.bin/make/varmodifiers.c
665
subbuf = wp + pat->matches[n].rm_so;
usr.bin/make/varmodifiers.c
666
sublen = pat->matches[n].rm_eo -
usr.bin/make/varmodifiers.c
667
pat->matches[n].rm_so;
usr.bin/make/varmodifiers.c
679
wp += pat->matches[0].rm_eo;
usr.bin/make/varmodifiers.c
684
if (pat->matches[0].rm_eo == 0) {
usr.bin/mg/cscope.c
236
curmatch = TAILQ_FIRST(&r->matches);
usr.bin/mg/cscope.c
246
curmatch = TAILQ_FIRST(&currecord->matches);
usr.bin/mg/cscope.c
266
m = TAILQ_PREV(curmatch, matches, entry);
usr.bin/mg/cscope.c
276
curmatch = TAILQ_LAST(&currecord->matches,
usr.bin/mg/cscope.c
277
matches);
usr.bin/mg/cscope.c
302
curmatch = TAILQ_FIRST(&currecord->matches);
usr.bin/mg/cscope.c
324
curmatch = TAILQ_FIRST(&currecord->matches);
usr.bin/mg/cscope.c
463
TAILQ_INIT(&r->matches);
usr.bin/mg/cscope.c
467
TAILQ_INSERT_TAIL(&r->matches, m, entry);
usr.bin/mg/cscope.c
477
TAILQ_INSERT_TAIL(&addentryr->matches, m, entry);
usr.bin/mg/cscope.c
49
TAILQ_HEAD(matches, csmatch) matches;
usr.bin/mg/cscope.c
545
while ((m = TAILQ_FIRST(&r->matches)) != NULL) {
usr.bin/mg/cscope.c
546
TAILQ_REMOVE(&r->matches, m, entry);
usr.bin/tic/tic.c
1002
if (matches(namelst, qp->tterm.term_names)) {
usr.bin/tic/tic.c
1021
if (matches(namelst, qp->tterm.term_names)) {
usr.bin/tic/tic.c
1034
if (matches(namelst, qp->tterm.term_names))
usr.bin/tic/tic.c
1042
if (matches(namelst, qp->tterm.term_names)) {
usr.bin/what/what.c
111
matches++;
usr.bin/what/what.c
129
matches++;
usr.bin/what/what.c
45
static int matches;
usr.bin/what/what.c
63
matches = sflag = 0;
usr.bin/what/what.c
85
exit(matches ? 0 : 1);
usr.bin/what/what.c
90
exit(matches ? 0 : 1);
usr.sbin/nsd/simdzone/src/generic/algorithm.h
137
uint64_t matches, mask, name;
usr.sbin/nsd/simdzone/src/generic/algorithm.h
140
matches = input == name;
usr.sbin/nsd/simdzone/src/generic/algorithm.h
145
matches &= (input & mask) == name;
usr.sbin/nsd/simdzone/src/generic/algorithm.h
150
matches &= (input & mask) == name;
usr.sbin/nsd/simdzone/src/generic/algorithm.h
152
return matches & (length == algorithm->key.length) & (*number > 0);
usr.sbin/relayd/relay_http.c
1566
struct kvlist *matches, struct kvlist *actions, struct relay_table **tbl)
usr.sbin/relayd/relay_http.c
1586
if (matches == NULL) {
usr.sbin/relayd/relay_http.c
1591
TAILQ_FOREACH(kv, matches, kv_match_entry) {
usr.sbin/relayd/relay_http.c
1846
struct kvlist actions, matches;
usr.sbin/relayd/relay_http.c
1855
TAILQ_INIT(&matches);
usr.sbin/relayd/relay_http.c
1875
else if (relay_httpheader_test(cre, r, &matches) != 0)
usr.sbin/relayd/relay_http.c
1877
else if ((res = relay_httpquery_test(cre, r, &matches)) != 0)
usr.sbin/relayd/relay_http.c
1879
else if (relay_httppath_test(cre, r, &matches) != 0)
usr.sbin/relayd/relay_http.c
1881
else if ((res = relay_httpurl_test(cre, r, &matches)) != 0)
usr.sbin/relayd/relay_http.c
1883
else if ((res = relay_httpcookie_test(cre, r, &matches)) != 0)
usr.sbin/relayd/relay_http.c
1890
if (relay_match_actions(cre, r, &matches,
usr.sbin/relayd/relay_http.c
1906
TAILQ_FOREACH(kv, &matches, kv_match_entry) {