| /src/sys/dev/isa/ |
| cy_isa.c | 41 int found = 0; local 63 found = cy_find(sc); 67 if (found) { 78 return (found);
|
| /src/sys/arch/sandpoint/sandpoint/ |
| iic_eumb.c | 47 static int found; variable 53 return found == 0; 64 found = 1;
|
| com_eumb.c | 55 static int found; variable 72 if (unit == EUMBCF_UNIT_DEFAULT && found == 0) 89 found = 1;
|
| /src/lib/libc/posix1e/ |
| acl_delete_entry.c | 84 int found = 0; local 118 found = 1; 123 if (found)
|
| /src/sys/arch/mips/mips/ |
| wired_map.c | 95 int found, index; local 104 found = 0; 114 found = 1; 119 if (found == 0) {
|
| /src/usr.bin/at/ |
| perm.c | 65 bool found = false; local 73 found = true; 79 return found;
|
| /src/lib/libintl/ |
| sysdep.c | 222 const struct sysdep_pair *found; local 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 85 found = 0; 91 if (found) 93 found = c; 95 return(found);
|
| /src/sbin/nvmectl/ |
| devlist.c | 76 int ch, ctrlr, fd, found, ret; local 86 found = 0; 102 found++; 121 if (found == 0) { 122 printf("No NVMe controllers found.\n");
|
| /src/sys/arch/arm/arm/ |
| disksubr.c | 134 int cyl, netbsdpartoff, i, found = 0; local 215 found = 1; 220 if (msg != NULL || found == 0)
|
| /src/sys/arch/arm/imx/ |
| imxi2c.c | 84 bool found = false; local 89 found = true; 94 if (found == false) {
|
| /src/sys/arch/arm/s3c2xx0/ |
| sscom_s3c2440.c | 116 static int found; variable 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 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/evbmips/sbmips/ |
| cpu.c | 66 static u_int found = 0; variable 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/landisk/landisk/ |
| autoconf.c | 55 panic("no mainbus found"); 85 int found = 0; local 140 found = 1; 146 return (found); 167 * Don't break if one is found, to get possible multiple
|
| /src/sys/arch/mac68k/obio/ |
| if_sn_obio.c | 73 int found = 0; local 83 found = 1; 87 return found;
|
| /src/sys/arch/mips/sibyte/dev/ |
| sbsmbus.c | 72 static int found = 0; variable 79 return (found < 2); 89 found++;
|
| /src/sys/arch/mvme68k/dev/ |
| wdsc.c | 301 int found = 0; local 315 ++found; 321 return found; 331 int found; local 342 found = sbicintr(dev); 350 return found;
|
| /src/sys/arch/powerpc/booke/dev/ |
| cpunode.c | 111 bool found = (cnl->cnl_ids[0] == 0); local 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/arch/sbmips/sbmips/ |
| cpu.c | 65 static u_int found = 0; variable 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/xen/x86/ |
| autoconf.c | 233 device_t found = NULL; local 261 found = dev; 265 if (found == NULL) { 267 found = isaboot; 269 found = pciboot; 272 if (found) { 279 booted_device = found;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_procmaps_test.cc | 44 bool found = false; local 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 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/sys/kern/ |
| subr_optstr.c | 43 * with a maximum of bufsize bytes. If the key is found, returns true; 51 bool found = false; local 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 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 124 const bool found = optstr_get_pointer(optstr, key, &data); local 143 const bool found = optstr_get_pointer(optstr, key, &data); local 162 const bool found = optstr_get_pointer(optstr, key, &data); local 183 const bool found = optstr_get_pointer(optstr, key, &data); local [all...] |
| /src/usr.bin/whereis/ |
| whereis.c | 67 int useenvpath = which, found = 0; local 123 found++; 148 found++; 154 return ((found == 0) ? 3 : ((found >= argc) ? 0 : 2));
|