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

1 2 3 4 5 6 7 8 91011

  /src/sys/dev/isa/
cy_isa.c 41 int found = 0; local in function:cy_isa_probe
63 found = cy_find(sc);
67 if (found) {
78 return (found);
  /src/sys/arch/sandpoint/sandpoint/
iic_eumb.c 47 static int found; variable in typeref:typename:int
53 return found == 0;
64 found = 1;
com_eumb.c 55 static int found; variable in typeref:typename:int
72 if (unit == EUMBCF_UNIT_DEFAULT && found == 0)
89 found = 1;
  /src/lib/libc/posix1e/
acl_delete_entry.c 84 int found = 0; local in function:acl_delete_entry
118 found = 1;
123 if (found)
  /src/usr.bin/at/
perm.c 65 bool found = false; local in function:check_for_user
73 found = true;
79 return found;
  /src/sys/arch/mips/mips/
wired_map.c 95 int found, index; local in function:mips3_wired_enter_page
104 found = 0;
114 found = 1;
119 if (found == 0) {
  /src/lib/libintl/
sysdep.c 222 const struct sysdep_pair *found; local in function:__intl_sysdep_get_string_by_tag
224 found = bsearch(tag, sysdep_pair_table, numof(sysdep_pair_table),
227 if (found) {
229 *rlen = found->len;
230 return found->string;
  /src/lib/libtelnet/
genget.c 79 register char **c, **found; local in function:genget
85 found = 0;
91 if (found)
93 found = c;
95 return(found);
  /src/sys/arch/arm/arm/
disksubr.c 134 int cyl, netbsdpartoff, i, found = 0; local in function:readdisklabel
215 found = 1;
220 if (msg != NULL || found == 0)
  /src/sys/arch/arm/imx/
imxi2c.c 84 bool found = false; local in function:imxi2c_set_freq
89 found = true;
94 if (found == false) {
  /src/sys/arch/arm/s3c2xx0/
sscom_s3c2440.c 116 static int found; variable in typeref:typename:int
124 if (unit == SSIOCF_INDEX_DEFAULT && found == 0)
155 found = 1;
  /src/sys/arch/emips/emips/
autoconf.c 75 panic("no mainbus found");
154 static int found, initted, netboot; local in function:device_register
158 if (found)
188 found = 1;
196 found = 1;
200 /* The NIC might be found after the disk, so bail out here */
208 found = 1;
  /src/sys/arch/mac68k/obio/
if_sn_obio.c 73 int found = 0; local in function:sn_obio_match
83 found = 1;
87 return found;
  /src/sys/arch/mips/sibyte/dev/
sbsmbus.c 72 static int found = 0; variable in typeref:typename:int
79 return (found < 2);
89 found++;
  /src/sys/arch/mvme68k/dev/
wdsc.c 301 int found = 0; local in function:wdsc_dmaintr
315 ++found;
321 return found;
331 int found; local in function:wdsc_scsiintr
342 found = sbicintr(dev);
350 return found;
  /src/sys/arch/powerpc/booke/dev/
cpunode.c 111 bool found = (cnl->cnl_ids[0] == 0); local in function:cpunode_attach
126 !found
134 found = (cnl->cnl_ids[i] == my_id);
137 * found & inclusive == match
138 * !found & !inclusive == match
139 * found & !inclusive == no match
140 * !found & inclusive == no match
142 * found ^ inclusive = no match
144 * !(found ^ inclusive) = match
146 if (found ^ inclusive
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_procmaps_test.cc 44 bool found = false; local in function:__sanitizer::TEST
49 found = true;
53 EXPECT_TRUE(found);
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
selftest_llc.c 36 unsigned int ia_freq, ring_freq, found; local in function:gen6_verify_ring_freq
51 found = (val >> 0) & 0xff;
52 if (found != ia_freq) {
53 pr_err("Min freq table(%d/[%d, %d]):%dMHz did not match expected CPU freq, found %d, expected %d\n",
56 found, ia_freq);
61 found = (val >> 8) & 0xff;
62 if (found != ring_freq) {
63 pr_err("Min freq table(%d/[%d, %d]):%dMHz did not match expected ring freq, found %d, expected %d\n",
66 found, ring_freq);
  /src/usr.sbin/sysinst/
install.c 57 bool found, res; local in function:write_all_parts
71 found = false;
74 found = true;
78 if (found)
86 found = false;
89 found = true;
93 if (found)
  /src/sbin/nvmectl/
devlist.c 76 int ch, ctrlr, fd, found, ret; local in function:devlist
86 found = 0;
102 found++;
121 if (found == 0) {
122 printf("No NVMe controllers found.\n");
  /src/sys/kern/
subr_optstr.c 43 * with a maximum of bufsize bytes. If the key is found, returns true;
51 bool found = false; local in function:optstr_get_pointer
58 while (!found && *optstr != '\0') {
69 found = true;
71 /* Key not found; skip until next space. */
81 if (found) {
86 return found;
93 bool found = optstr_get_pointer(optstr, key, &data); local in function:optstr_get
95 /* If the key was found; copy its value to the target buffer. */
96 if (found) {
111 const bool found = optstr_get_pointer(optstr, key, &data); local in function:optstr_get_string
124 const bool found = optstr_get_pointer(optstr, key, &data); local in function:optstr_get_number
143 const bool found = optstr_get_pointer(optstr, key, &data); local in function:optstr_get_number_hex
162 const bool found = optstr_get_pointer(optstr, key, &data); local in function:optstr_get_number_binary
183 const bool found = optstr_get_pointer(optstr, key, &data); local in function:optstr_get_macaddr
    [all...]
  /src/sys/arch/xen/x86/
autoconf.c 233 device_t found = NULL; local in function:device_register
261 found = dev;
265 if (found == NULL) {
267 found = isaboot;
269 found = pciboot;
272 if (found) {
279 booted_device = found;
  /src/sys/arch/evbmips/sbmips/
cpu.c 66 static u_int found = 0; variable in typeref:typename:u_int
82 return (found < ((part >> 8) & 0xf));
94 found++;
109 aprint_normal(": PLL_DIV of zero found, assuming 6 (300MHz)\n");
115 if (found == 1) {
138 ci = cpu_info_alloc(NULL, found - 1, 0, found - 1, 0);
  /src/sys/arch/sbmips/sbmips/
cpu.c 65 static u_int found = 0; variable in typeref:typename:u_int
81 return (found < ((part >> 8) & 0xf));
93 found++;
108 aprint_normal(": PLL_DIV of zero found, assuming 6 (300MHz)\n");
114 if (found == 1) {
137 ci = cpu_info_alloc(NULL, found - 1, 0, found - 1, 0);
  /src/sys/arch/landisk/landisk/
autoconf.c 55 panic("no mainbus found");
85 int found = 0; local in function:match_bootdisk
140 found = 1;
146 return (found);
167 * Don't break if one is found, to get possible multiple

Completed in 62 milliseconds

1 2 3 4 5 6 7 8 91011