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

1 2

  /src/sys/arch/arc/arc/
platform.c 58 int i, rv, matched = -1, match = 0, ambiguous_match = 0; local
64 matched = i;
73 print_platform(plattab[matched]);
75 if (i == matched)
87 print_platform(plattab[matched]);
91 platform = plattab[matched];
  /src/sys/arch/mvme68k/dev/
vme_two_68k.c 80 static int matched = 0; local
88 if (matched++)
  /src/usr.bin/systat/
disks.c 89 int matched; local
105 matched = 0;
111 matched = 1;
113 if (matched == 0)
  /src/usr.sbin/user/
main.c 78 int matched; local
82 for (matched = i = 0 ; i < cmdp->c_wc && i < MaxCmdWords ; i++) {
86 matched += 1;
92 if (matched == cmdp->c_wc) {
93 return (*cmdp->c_func)(argc - (matched - 1), argv + (matched - 1));
  /src/sys/arch/landisk/dev/
rs5c313_landisk.c 78 static int matched = 0; local
80 if (matched)
83 matched = 1;
  /src/sys/arch/sun2/dev/
bwtwo_any.c 126 int matched; local
132 matched = (bus_space_peek_1(ma->ma_bustag, bh, 0, NULL) == 0);
134 return (matched);
sc_mbmem.c 116 bool matched; local
126 matched =
129 if (!matched)
zs_any.c 98 int matched; local
104 matched = (bus_space_peek_1(ma->ma_bustag, bh, 0, NULL) == 0);
106 if (!matched)
if_ec.c 162 bool matched; local
172 matched = (bus_space_peek_2(mbma->mbma_bustag, bh, 0, NULL) == 0);
174 if (!matched)
if_ie_mbmem.c 374 int matched; local
384 matched = (bus_space_peek_2(mbma->mbma_bustag, bh, 0, NULL) == 0);
386 if (!matched)
if_ie_obio.c 230 int matched; local
241 matched = (!bus_space_poke_1(oba->oba_bustag, bh, 0, IEOB_NORSET) &&
245 if (!matched)
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 108 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", (*sp)->templ);
146 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", s->templ);
155 InternalMmapVector<Suppression *> matched; local
157 suppression_ctx->GetMatched(&matched);
158 if (!matched.size())
161 for (uptr i = 0; i < matched.size(); i++)
162 hit_count += atomic_load_relaxed(&matched[i]->hit_count);
163 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
165 for (uptr i = 0; i < matched.size(); i++) {
166 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count)
    [all...]
  /src/sys/arch/sun2/sun2/
tod.c 130 int matched; local
140 matched = (bus_space_peek_1(oba->oba_bustag, bh, 0, NULL) == 0);
142 return matched;
clock.c 153 bool matched; local
163 matched = (bus_space_peek_2(oba->oba_bustag, bh, 0, NULL) == 0);
165 if (!matched)
  /src/common/lib/libutil/
snprintb.c 166 int matched = 1; local
192 matched = 0;
227 matched = 1;
241 if (matched)
243 matched = 1;
  /src/games/warp/
intrp.c 306 bool matched; local
319 matched = strEQ(scrbuf+1,dest);
322 matched = instr(dest,scrbuf) != NULL;
323 if (matched==(rch == '=')) {
  /src/sys/rump/librump/rumpkern/
threads.c 167 bool matched; local
173 matched = strncmp(thrstore, nothreads[i].t_name,
176 matched = strcmp(thrstore,
179 if (matched) {
  /src/usr.bin/vgrind/
regexp.c 341 * characters matched will be copied into
351 * character matched.
362 bool matched; /* a temporary bool */ local
368 matched = false;
376 matched = !STRNCMP (s, SSTR(cs), SCNT(cs));
377 if (matched) {
390 matched = 1; /* indicate a successful match */
404 if (matched)
419 /* the subexpression matched */
420 matched = 1
    [all...]
  /src/sys/arch/cobalt/dev/
zs.c 135 static int matched; local
138 if (matched)
148 matched = 1;
  /src/sys/arch/ia64/stand/common/
commands.c 148 int hfd, matched, doindex; local
176 matched = doindex;
188 if(matched) /* nothing more on this topic, stop scanning */
192 /* topic matched */
193 matched = 1;
215 if (!matched) {
  /src/usr.bin/make/
str.h 73 bool matched; member in struct:StrMatchResult
  /src/usr.sbin/ldpd/
conffile.c 183 int i, last_match = -1, matched = 0; local
192 matched++;
195 if (matched == 0)
197 else if (matched > 1)
  /src/common/lib/libc/gen/
ptree.c 374 bool matched; local
382 matched = ptree_matchnode(pt, target, leaf, UINT_MAX,
390 if (!at_mask && matched)
408 if (matched) {
547 * The bits matched, so insert the mask as a
712 * Nothing matched.
  /src/dist/pf/usr.sbin/authpf/
authpf.c 448 int matched; local
489 matched = strcmp(luser, buf) == 0 || strcmp("*", buf) == 0;
496 if (matched)
497 return (1); /* matched an allowed username */
  /src/bin/ksh/
misc.c 730 int matched = 0; local
737 matched = 1;
743 if (!matched && do_gmatch(srest, se,

Completed in 40 milliseconds

1 2