| /dflybsd-src/contrib/gcc-4.7/gcc/ |
| H A D | tree-nrv.c | 115 tree found = NULL; in tree_nrv() local 169 if (found != NULL) in tree_nrv() 174 if (found != rhs) in tree_nrv() 178 found = rhs; in tree_nrv() 182 if (TREE_CODE (found) != VAR_DECL in tree_nrv() 183 || TREE_THIS_VOLATILE (found) in tree_nrv() 184 || DECL_CONTEXT (found) != current_function_decl in tree_nrv() 185 || TREE_STATIC (found) in tree_nrv() 186 || TREE_ADDRESSABLE (found) in tree_nrv() 187 || DECL_ALIGN (found) > DECL_ALIGN (result) in tree_nrv() [all …]
|
| H A D | tree-ssa-loop-unswitch.c | 196 unsigned i, found; in tree_unswitch_single_loop() local 203 found = loop->num_nodes; in tree_unswitch_single_loop() 219 if (found == loop->num_nodes) in tree_unswitch_single_loop() 252 if (found == loop->num_nodes) in tree_unswitch_single_loop() 253 found = i; in tree_unswitch_single_loop() 259 found = i; in tree_unswitch_single_loop() 324 for (; found < loop->num_nodes; found++) in tree_unswitch_single_loop() 325 if ((bbs[found]->flags & BB_REACHABLE) in tree_unswitch_single_loop() 326 && (cond = tree_may_unswitch_on (bbs[found], loop))) in tree_unswitch_single_loop() 329 if (found == loop->num_nodes) in tree_unswitch_single_loop() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | tree-nrv.c | 139 tree found = NULL; in execute() local 193 if (found != NULL) in execute() 198 if (found != rhs) in execute() 202 found = rhs; in execute() 206 if (!VAR_P (found) in execute() 207 || TREE_THIS_VOLATILE (found) in execute() 208 || !auto_var_in_fn_p (found, current_function_decl) in execute() 209 || TREE_ADDRESSABLE (found) in execute() 210 || DECL_ALIGN (found) > DECL_ALIGN (result) in execute() 212 TREE_TYPE (found))) in execute() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
| H A D | throw_allocator.h | 114 const_iterator found = map_alloc().find(p); in _GLIBCXX_VISIBILITY() local 115 if (found != map_alloc().end()) in _GLIBCXX_VISIBILITY() 119 log_to_string(error, *found); in _GLIBCXX_VISIBILITY() 143 auto found = map_construct().find(p); in _GLIBCXX_VISIBILITY() local 144 if (found != map_construct().end()) in _GLIBCXX_VISIBILITY() 148 log_to_string(error, *found); in _GLIBCXX_VISIBILITY() 167 const_iterator found = map_alloc().find(p); in _GLIBCXX_VISIBILITY() local 168 if (found == map_alloc().end()) in _GLIBCXX_VISIBILITY() 176 if (found->second.second != size) in _GLIBCXX_VISIBILITY() 181 log_to_string(error, *found); in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/sys/vfs/devfs/ |
| H A D | devfs_core.c | 542 struct devfs_node *found = node; in devfs_alias_getvp() local 545 while ((found->node_type == Nlink) && (found->link_target)) { in devfs_alias_getvp() 551 found = found->link_target; in devfs_alias_getvp() 555 return found->v_node; in devfs_alias_getvp() 913 cdev_t found = NULL; in devfs_find_device_by_name() local 928 found = msg->mdv_cdev; in devfs_find_device_by_name() 932 return found; in devfs_find_device_by_name() 943 cdev_t found = NULL; in devfs_find_device_by_devid() local 949 found = msg->mdv_cdev; in devfs_find_device_by_devid() 954 ((found) ? found->si_name:"NO")); in devfs_find_device_by_devid() [all …]
|
| /dflybsd-src/crypto/openssh/ |
| H A D | auth2-pubkeyfile.c | 175 u_int i, found = 0; in auth_check_principals_line() local 211 found = 1; in auth_check_principals_line() 213 if (found && authoptsp != NULL) { in auth_check_principals_line() 218 return found ? 0 : -1; in auth_check_principals_line() 269 struct sshkey *found = NULL; in auth_check_authkey_line() local 278 if ((found = sshkey_new(want_keytype)) == NULL) { in auth_check_authkey_line() 285 if (sshkey_read(found, &cp) != 0) { in auth_check_authkey_line() 294 if (sshkey_read(found, &cp) != 0) { in auth_check_authkey_line() 309 if (!sshkey_equal(found, key->cert->signature_key) || in auth_check_authkey_line() 314 if (!sshkey_equal(found, key) || keyopts->cert_authority) in auth_check_authkey_line() [all …]
|
| H A D | ssh-keysign.c | 183 int r, key_fd[NUM_KEYTYPES], i, found, version = 2, fd; in main() local 235 for (i = found = 0; i < NUM_KEYTYPES; i++) { in main() 237 found = 1; in main() 239 if (found == 0) in main() 242 found = 0; in main() 254 found = 1; in main() 257 if (!found) in main() 282 found = 0; in main() 286 found = 1; in main() 290 if (!found) { in main()
|
| H A D | auth2-methods.c | 96 u_int i, found; in auth2_methods_valid() local 106 for (found = i = 0; !found && authmethod_cfgs[i] != NULL; i++) { in auth2_methods_valid() 121 found = 1; in auth2_methods_valid() 124 if (!found) { in auth2_methods_valid()
|
| /dflybsd-src/lib/libpam/modules/pam_ftpusers/ |
| H A D | pam_ftpusers.c | 61 int pam_err, found, allow; in pam_sm_acct_mgmt() local 72 found = 0; in pam_sm_acct_mgmt() 78 while (!found && (line = fgetln(f, &len)) != NULL) { in pam_sm_acct_mgmt() 88 found = 1; in pam_sm_acct_mgmt() 101 for (mem = grp->gr_mem; mem && *mem && !found; ++mem) in pam_sm_acct_mgmt() 103 found = 1; in pam_sm_acct_mgmt() 107 if (found) in pam_sm_acct_mgmt()
|
| /dflybsd-src/contrib/binutils-2.27/binutils/ |
| H A D | arsup.c | 75 bfd_boolean found = FALSE; in map_over_list() local 83 found = TRUE; in map_over_list() 88 if (! found) in map_over_list() 298 int found = 0; in ar_delete() local 305 found = 1; in ar_delete() 313 if (!found) in ar_delete() 363 int found = 0; in ar_replace() local 382 found = 1; in ar_replace() 392 if (!found) in ar_replace() 461 int found = 0; in ar_extract() local [all …]
|
| H A D | addr2line.c | 161 static bfd_boolean found; variable 173 if (found) in find_address_in_section() 187 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc - vma, in find_address_in_section() 199 if (found) in find_offset_in_section() 209 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc, in find_offset_in_section() 261 found = FALSE; in translate_addresses() 267 if (! found) in translate_addresses() 332 found = FALSE; in translate_addresses() 334 found = bfd_find_inliner_info (abfd, &filename, &functionname, in translate_addresses() 336 if (! found) in translate_addresses()
|
| /dflybsd-src/contrib/binutils-2.34/binutils/ |
| H A D | arsup.c | 75 bfd_boolean found = FALSE; in map_over_list() local 83 found = TRUE; in map_over_list() 88 if (! found) in map_over_list() 310 int found = 0; in ar_delete() local 317 found = 1; in ar_delete() 325 if (!found) in ar_delete() 375 int found = 0; in ar_replace() local 394 found = 1; in ar_replace() 404 if (!found) in ar_replace() 473 int found = 0; in ar_extract() local [all …]
|
| H A D | addr2line.c | 170 static bfd_boolean found; variable 182 if (found) in find_address_in_section() 196 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc - vma, in find_address_in_section() 208 if (found) in find_offset_in_section() 218 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc, in find_offset_in_section() 270 found = FALSE; in translate_addresses() 276 if (! found) in translate_addresses() 341 found = FALSE; in translate_addresses() 343 found = bfd_find_inliner_info (abfd, &filename, &functionname, in translate_addresses() 345 if (! found) in translate_addresses()
|
| /dflybsd-src/contrib/wpa_supplicant/src/utils/ |
| H A D | trace.c | 143 bfd_boolean found; member 156 if (data->found) in find_addr_sect() 170 data->found = bfd_find_nearest_line(abfd, section, syms, in find_addr_sect() 190 data.found = FALSE; in wpa_trace_bfd_addr() 193 if (!data.found) in wpa_trace_bfd_addr() 216 data.found = bfd_find_inliner_info(abfd, &data.filename, in wpa_trace_bfd_addr() 218 } while (data.found); in wpa_trace_bfd_addr() 231 data.found = FALSE; in wpa_trace_bfd_addr2func() 234 if (!data.found) in wpa_trace_bfd_addr2func() 303 data.found = FALSE; in wpa_trace_calling_func() [all …]
|
| /dflybsd-src/usr.sbin/cron/lib/ |
| H A D | env.c | 76 int count, found; in env_set() local 84 found = -1; in env_set() 87 found = count; in env_set() 91 if (found != -1) { in env_set() 96 q = envp[found]; in env_set() 97 if ((envp[found] = strdup(envstr)) == NULL) { in env_set() 98 envp[found] = q; in env_set()
|
| /dflybsd-src/lib/libtelnet/ |
| H A D | genget.c | 70 char **c, **found; in genget() local 76 found = NULL; in genget() 82 if (found) in genget() 84 found = c; in genget() 86 return(found); in genget()
|
| /dflybsd-src/sys/kern/ |
| H A D | kern_resource.c | 178 int found; member 194 int found = 0, error = 0; in sys_setpriority() local 202 found++; in sys_setpriority() 210 found++; in sys_setpriority() 235 found++; in sys_setpriority() 253 info.found = 0; in sys_setpriority() 256 found = info.found; in sys_setpriority() 260 found = 1; in sys_setpriority() 264 if (found == 0) in sys_setpriority() 282 ++info->found; in setpriority_callback() [all …]
|
| /dflybsd-src/contrib/wpa_supplicant/wpa_supplicant/ |
| H A D | op_classes.c | 217 int found; in wpas_op_class_supported() local 303 found = 0; in wpas_op_class_supported() 307 found++; in wpas_op_class_supported() 311 found++; in wpas_op_class_supported() 314 found++; in wpas_op_class_supported() 316 found++; in wpas_op_class_supported() 318 if (found >= 2) in wpas_op_class_supported() 324 found = 0; in wpas_op_class_supported() 328 found = 1; in wpas_op_class_supported() 333 return found; in wpas_op_class_supported()
|
| /dflybsd-src/contrib/gdb-7/gdb/ |
| H A D | skip.c | 233 int found = 0; in skip_enable_command() local 239 found = 1; in skip_enable_command() 242 if (!found) in skip_enable_command() 250 int found = 0; in skip_disable_command() local 256 found = 1; in skip_disable_command() 259 if (!found) in skip_disable_command() 267 int found = 0; in skip_delete_command() local 281 found = 1; in skip_delete_command() 288 if (!found) in skip_delete_command()
|
| /dflybsd-src/contrib/ncurses/ncurses/trace/ |
| H A D | lib_traceatr.c | 258 char *found = 0; in _nc_altcharset_name() local 262 found = cp; in _nc_altcharset_name() 267 if (found != 0) { in _nc_altcharset_name() 270 ch = ChCharOf(UChar(*found)); in _nc_altcharset_name() 288 const char *found; in _tracechtype2() local 292 if ((found = _nc_altcharset_name(attr, ch)) != 0) { in _tracechtype2() 293 (void) _nc_trace_bufcat(bufnum, found); in _tracechtype2() 334 const char *found; in _tracecchar_t2() local 337 if ((found = _nc_altcharset_name(attr, (chtype) CharOfD(ch))) != 0) { in _tracecchar_t2() 338 (void) _nc_trace_bufcat(bufnum, found); in _tracecchar_t2()
|
| /dflybsd-src/contrib/ncurses/ncurses/tinfo/ |
| H A D | make_keys.c | 68 bool found = FALSE; in lookup() local 71 found = TRUE; in lookup() 75 if (!found) { in lookup() 78 found = TRUE; in lookup() 83 return found ? n : unknown(); in lookup()
|
| H A D | name_match.c | 101 int code, found; in _nc_name_match() local 108 found = FALSE; in _nc_name_match() 112 found = TRUE; in _nc_name_match() 116 if (found) in _nc_name_match()
|
| /dflybsd-src/sbin/fsck_hammer2/ |
| H A D | reconstruct.c | 153 bool found = false; in modify_volume_header() local 171 found = true; in modify_volume_header() 183 found = true; in modify_volume_header() 195 found = true; in modify_volume_header() 201 if (found && ForceOpt) { in modify_volume_header() 407 bool found = false; in modify_check() local 461 found = true; in modify_check() 469 found = true; in modify_check() 484 found = true; in modify_check() 494 found = true; in modify_check() [all …]
|
| /dflybsd-src/contrib/ncurses/progs/ |
| H A D | infocmp.c | 455 bool found; in compare_predicate() local 475 found = TRUE; in compare_predicate() 479 found = FALSE; in compare_predicate() 483 if (found) { in compare_predicate() 491 found = TRUE; in compare_predicate() 495 found = FALSE; in compare_predicate() 499 if (found) { in compare_predicate() 522 found = TRUE; in compare_predicate() 526 found = FALSE; in compare_predicate() 530 if (found) { in compare_predicate() [all …]
|
| /dflybsd-src/crypto/libressl/crypto/x509/ |
| H A D | x509_issuer_cache.c | 121 struct x509_issuer candidate, *found; in x509_issuer_cache_find() local 133 if ((found = RB_FIND(x509_issuer_tree, &x509_issuer_cache, in x509_issuer_cache_find() 135 TAILQ_REMOVE(&x509_issuer_lru, found, queue); in x509_issuer_cache_find() 136 TAILQ_INSERT_HEAD(&x509_issuer_lru, found, queue); in x509_issuer_cache_find() 137 ret = found->valid; in x509_issuer_cache_find()
|