HomeSort by: relevance | last modified time | path
    Searched defs:match (Results 1 - 25 of 133) sorted by relevancy

1 2 3 4 5 6

  /src/lib/libc/arch/mips/string/
bcmp.S 61 move v0, v1 # init v0,v1 so unmodified bytes match
107 ble a2, zero, match
117 match: label
  /src/tests/usr.bin/ld/
t_section.sh 74 match ".text" &&
75 match "hoge" &&
78 match ".data" &&
79 match "fuga" &&
80 match ".bss" &&
86 match() { function
  /src/usr.bin/make/unit-tests/
check-expect.lua 73 line:match('^make: ([^:]+%.mk):(%d+):%s+(.*)')
111 local function match(pattern, action) function
114 match = function() end function
118 match("^#%s+expect%-not:%s*(.*)", function(text)
127 match("^#%s+expect%-not%-matches:%s*(.*)", function(pattern)
130 print_error("error: %s:%d: %s:%d must not match '%s'",
136 match("^#%s+expect:%s*(.*)", function(text)
151 match("^#%s+expect%-reset$", function()
155 match("^#%s+expect([+%-]%d+):%s*(.*)", function(offset, text)
177 match("^#%s+expect[+%-:]", function(
    [all...]
  /src/games/monop/
getinp.c 56 int i, n_match, match = 0; local in function:getinp
67 for (i = 0, match = 18; lst[i]; i++) {
68 if ((match+=(n_match=strlen(lst[i]))) > LINE) {
70 match = n_match + 8;
73 match += 8;
82 match += 2;
93 match = i;
96 return match;
  /src/sys/arch/arc/arc/
platform.c 58 int i, rv, matched = -1, match = 0, ambiguous_match = 0; local in function:ident_platform
61 rv = (*plattab[i]->match)(plattab[i]);
62 if (rv > match) {
63 match = rv;
66 } else if (rv == match) {
77 rv = (*plattab[i]->match)(plattab[i]);
78 if (rv < match)
90 if (match)
92 return match;
  /src/sys/arch/mvmeppc/include/
platform.h 41 int (*match)(struct platform *); member in struct:platform
  /src/tests/rump/rumpkern/h_server/
h_simpleserver.c 29 bool match; local in function:main
50 match = true;
54 if (!match) {
  /src/usr.sbin/faithd/
prefix.h 42 struct prefix match; member in struct:config
  /src/tests/net/tcp/
tcp_shutdown.c 53 match(const char *a, const char *b) function in typeref:typename:bool
76 if (match(target, "connect")) {
89 } else if (match(target, "setsockopt")) {
96 } else if (match(target, "getsockname")) {
104 } else if (match(target, "listen")) {
110 } else if (match(target, "bind")) {
123 } else if (match(target, "shutdown")) {
  /src/sys/lib/libkern/
pmatch.c 43 * Return 2 on exact match.
44 * Return 1 on substring match.
45 * Return 0 on no match.
47 * *estr will point to the end of the longest exact or substring match.
53 int match, negate_range; local in function:pmatch
107 match = 0;
113 if (match)
117 match =
122 match = (stringc == rangec);
126 if (match == negate_range
    [all...]
  /src/sys/dev/fdt/
fdt_console.h 35 int (*match)(int); member in struct:fdt_console
fdt_platform.c 49 int match, best_match = 0; local in function:fdt_platform_find
57 match = of_compatible_match(phandle, compat_data);
58 if (match > best_match) {
59 best_match = match;
  /src/sys/arch/arc/include/
platform.h 50 int (*match)(struct platform *); member in struct:platform
  /src/sys/arch/sparc/dev/
com_ebus.c 67 int match; local in function:com_ebus_match
72 match = 0;
76 match = comprobe1(ea->ea_bustag, ioh);
80 return (match);
  /src/sys/dev/acpi/
ohci_acpi.c 70 int match; local in function:ohci_acpi_match
76 match = acpi_compatible_match(aa, compat_data);
77 if (!match) {
78 match = acpi_match_class(aa->aa_node->ad_handle,
84 return match;
dwcmmc_acpi.c 70 int match; local in function:dwcmmc_acpi_match
72 match = acpi_compatible_match(aa, rockchip_compat_data);
73 if (!match) {
74 match = acpi_compatible_match(aa, compat_data);
77 return match;
  /src/tests/lib/libc/string/
t_memchr.c 32 char match; member in struct:ATF_TC_BODY::tab
103 if (tab[t].match == 0) {
110 } else if (tab[t].match == 1) {
t_strrchr.c 31 char match; member in struct:ATF_TC_BODY::tab
32 ssize_t f_off; /* offset of first match */
33 ssize_t l_off; /* offset of last match */
224 if (tab[t].match == 0) {
230 } else if (tab[t].match == 1) {
t_bm.c 51 ssize_t match; member in struct:__anon2bd77cd70108
86 if (testcases[ts].match == -1)
89 ATF_CHECK_EQ(testcases[ts].match,
  /src/usr.bin/from/
from.c 56 int match (const char *, const char *);
124 (!sender || match(buf + 5, sender)))
132 match(const char *line, const char *sender) function in typeref:typename:int
  /src/usr.bin/vgrind/RETEST/
retest.c 57 char *match; local in function:main
65 match = ireg;
66 while(*match) {
67 switch (*match) {
73 printf ("%c", *match);
77 if (isalnum(*match))
78 printf("%c", *match);
80 printf ("<%03o>", *match);
83 match++;
89 match = str
    [all...]
  /src/sys/arch/hpc/hpc/
platid.c 125 struct platid_name *match; local in function:platid_name
127 match = platid_search(pid,
131 return ((match != NULL) ? match->name : TEXT("UNKNOWN"));
150 void *match; local in function:platid_search
153 match = NULL;
158 match = base;
163 return (match);
  /src/usr.bin/kdump/
setemul.c 184 const struct emulation *match = NULL; local in function:setemul
188 match = &emulations[i];
193 if (!match) {
199 ectx_update(pid, match);
201 default_emul = match;
206 prev_emul = match;
208 cur_emul = match;
  /src/usr.sbin/sysinst/
txtwalk.c 56 static int match(char *, const struct lookfor *, size_t);
60 * Walk the buffer, call match for each line.
84 error = match(buffer, these, numthese);
96 * Match the current line with a string of interest.
97 * For each match in these, process the match.
100 match(char *line, const struct lookfor *these, size_t numthese) function in typeref:typename:int
270 /* Mis match! */
  /src/sys/arch/sh3/sh3/
mmu_sh3.c 98 uint32_t match, idx, aa, entry; local in function:sh3_tlb_invalidate_addr
102 match = (va & SH3_MMUAA_D_VPN_MASK_4K) | asid;
114 if (entry == match) {
127 uint32_t match, idx, a, entry; local in function:sh3_tlb_update
156 match = (va & SH3_MMUAA_D_VPN_MASK_4K) | asid;
161 newa = match | SH3_MMU_D_VALID;
179 if (entry == match) {
189 else { /* no match, all ways are valid */

Completed in 24 milliseconds

1 2 3 4 5 6