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

1 2 3

  /src/sys/arch/arc/arc/
platform.c 58 int i, rv, matched = -1, match = 0, ambiguous_match = 0; local in function:ident_platform
64 matched = i;
73 print_platform(plattab[matched]);
75 if (i == matched)
87 print_platform(plattab[matched]);
91 platform = plattab[matched];
platform.c 58 int i, rv, matched = -1, match = 0, ambiguous_match = 0; local in function:ident_platform
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 in function:vmetwo_match
88 if (matched++)
vme_two_68k.c 80 static int matched = 0; local in function:vmetwo_match
88 if (matched++)
  /src/usr.bin/systat/
disks.c 89 int matched; local in function:drvselect
105 matched = 0;
111 matched = 1;
113 if (matched == 0)
disks.c 89 int matched; local in function:drvselect
105 matched = 0;
111 matched = 1;
113 if (matched == 0)
  /src/sys/arch/sun2/dev/
zs_any.c 98 int matched; local in function:zs_any_match
104 matched = (bus_space_peek_1(ma->ma_bustag, bh, 0, NULL) == 0);
106 if (!matched)
sc_mbmem.c 116 bool matched; local in function:sunsc_mbmem_match
126 matched =
129 if (!matched)
bwtwo_any.c 126 int matched; local in function:bwtwomatch_any
132 matched = (bus_space_peek_1(ma->ma_bustag, bh, 0, NULL) == 0);
134 return (matched);
zs_any.c 98 int matched; local in function:zs_any_match
104 matched = (bus_space_peek_1(ma->ma_bustag, bh, 0, NULL) == 0);
106 if (!matched)
sc_mbmem.c 116 bool matched; local in function:sunsc_mbmem_match
126 matched =
129 if (!matched)
bwtwo_any.c 126 int matched; local in function:bwtwomatch_any
132 matched = (bus_space_peek_1(ma->ma_bustag, bh, 0, NULL) == 0);
134 return (matched);
  /src/usr.sbin/user/
main.c 78 int matched; local in function:main
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));
main.c 78 int matched; local in function:main
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 in function:rs5c313_landisk_match
80 if (matched)
83 matched = 1;
rs5c313_landisk.c 78 static int matched = 0; local in function:rs5c313_landisk_match
80 if (matched)
83 matched = 1;
  /src/sys/arch/sun2/sun2/
tod.c 130 int matched; local in function:tod_obio_match
140 matched = (bus_space_peek_1(oba->oba_bustag, bh, 0, NULL) == 0);
142 return matched;
tod.c 130 int matched; local in function:tod_obio_match
140 matched = (bus_space_peek_1(oba->oba_bustag, bh, 0, NULL) == 0);
142 return matched;
clock.c 153 bool matched; local in function:clock_match
163 matched = (bus_space_peek_2(oba->oba_bustag, bh, 0, NULL) == 0);
165 if (!matched)
clock.c 153 bool matched; local in function:clock_match
163 matched = (bus_space_peek_2(oba->oba_bustag, bh, 0, NULL) == 0);
165 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 in function:__tsan::PrintMatchedSuppressions
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...]
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 in function:__tsan::PrintMatchedSuppressions
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/games/warp/
intrp.c 306 bool matched; local in function:dointerp
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 in function:kthread_create
173 matched = strncmp(thrstore, nothreads[i].t_name,
176 matched = strcmp(thrstore,
179 if (matched) {
  /src/common/lib/libutil/
snprintb.c 157 int matched = 1; local in function:new_style
183 matched = 0;
217 matched = 1;
231 if (matched)
233 matched = 1;

Completed in 33 milliseconds

1 2 3