| /dragonfly/contrib/gcc-4.7/gcc/ |
| HD | tree-ssa-ifcombine.c | 308 tree name1, name2, bit1, bit2; in ifcombine_ifandif() local 324 if (recognize_single_bit_test (inner_cond, &name1, &bit1) in ifcombine_ifandif() 326 && name1 == name2) in ifcombine_ifandif() 332 t = fold_build2 (LSHIFT_EXPR, TREE_TYPE (name1), in ifcombine_ifandif() 333 build_int_cst (TREE_TYPE (name1), 1), bit1); in ifcombine_ifandif() 334 t2 = fold_build2 (LSHIFT_EXPR, TREE_TYPE (name1), in ifcombine_ifandif() 335 build_int_cst (TREE_TYPE (name1), 1), bit2); in ifcombine_ifandif() 336 t = fold_build2 (BIT_IOR_EXPR, TREE_TYPE (name1), t, t2); in ifcombine_ifandif() 339 t2 = fold_build2 (BIT_AND_EXPR, TREE_TYPE (name1), name1, t); in ifcombine_ifandif() 356 print_generic_expr (dump_file, name1, 0); in ifcombine_ifandif() [all …]
|
| HD | tree-predcom.c | 2075 find_common_use_stmt (tree *name1, tree *name2) in find_common_use_stmt() argument 2079 stmt1 = find_use_stmt (name1); in find_common_use_stmt() 2111 tree name1, name2; in combinable_refs_p() local 2114 name1 = name_for_ref (r1); in combinable_refs_p() 2116 gcc_assert (name1 != NULL_TREE && name2 != NULL_TREE); in combinable_refs_p() 2118 stmt = find_common_use_stmt (&name1, &name2); in combinable_refs_p() 2129 && gimple_assign_rhs1 (stmt) != name1); in combinable_refs_p() 2174 reassociate_to_the_same_stmt (tree name1, tree name2) in reassociate_to_the_same_stmt() argument 2181 tree type = TREE_TYPE (name1); in reassociate_to_the_same_stmt() 2184 stmt1 = find_use_stmt (&name1); in reassociate_to_the_same_stmt() [all …]
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | tree-ssa-ifcombine.c | 386 tree name1, name2, bit1, bit2, bits1, bits2; in ifcombine_ifandif() local 404 if (recognize_single_bit_test (inner_cond, &name1, &bit1, inner_inv) in ifcombine_ifandif() 406 && name1 == name2) in ifcombine_ifandif() 412 t = fold_build2 (LSHIFT_EXPR, TREE_TYPE (name1), in ifcombine_ifandif() 413 build_int_cst (TREE_TYPE (name1), 1), bit1); in ifcombine_ifandif() 414 t2 = fold_build2 (LSHIFT_EXPR, TREE_TYPE (name1), in ifcombine_ifandif() 415 build_int_cst (TREE_TYPE (name1), 1), bit2); in ifcombine_ifandif() 416 t = fold_build2 (BIT_IOR_EXPR, TREE_TYPE (name1), t, t2); in ifcombine_ifandif() 419 t2 = fold_build2 (BIT_AND_EXPR, TREE_TYPE (name1), name1, t); in ifcombine_ifandif() 440 print_generic_expr (dump_file, name1); in ifcombine_ifandif() [all …]
|
| HD | tree-predcom.c | 2509 find_common_use_stmt (tree *name1, tree *name2) in find_common_use_stmt() argument 2513 stmt1 = find_use_stmt (name1); in find_common_use_stmt() 2545 tree name1, name2; in combinable_refs_p() local 2548 name1 = name_for_ref (r1); in combinable_refs_p() 2550 gcc_assert (name1 != NULL_TREE && name2 != NULL_TREE); in combinable_refs_p() 2552 stmt = find_common_use_stmt (&name1, &name2); in combinable_refs_p() 2563 && gimple_assign_rhs1 (stmt) != name1); in combinable_refs_p() 2608 reassociate_to_the_same_stmt (tree name1, tree name2) in reassociate_to_the_same_stmt() argument 2615 tree type = TREE_TYPE (name1); in reassociate_to_the_same_stmt() 2618 stmt1 = find_use_stmt (&name1); in reassociate_to_the_same_stmt() [all …]
|
| HD | symtab.c | 103 symbol_table::assembler_names_equal_p (const char *name1, const char *name2) in assembler_names_equal_p() argument 105 if (name1 != name2) in assembler_names_equal_p() 107 if (name1[0] == '*') in assembler_names_equal_p() 111 name1 ++; in assembler_names_equal_p() 115 else if (strncmp (name1, user_label_prefix, ulp_len) == 0) in assembler_names_equal_p() 116 name1 += ulp_len; in assembler_names_equal_p() 133 return !strcmp (name1, name2); in assembler_names_equal_p() 1184 const char *name1 in verify_base() local 1190 if (!symbol_table::assembler_names_equal_p (name1, name2)) in verify_base()
|
| HD | tree-ssa-coalesce.c | 1502 gimple_can_coalesce_p (tree name1, tree name2) in gimple_can_coalesce_p() argument 1507 tree var1 = SSA_NAME_VAR (name1); in gimple_can_coalesce_p() 1516 tree t1 = TREE_TYPE (name1); in gimple_can_coalesce_p() 1523 var1 = SSA_NAME_VAR (name1); in gimple_can_coalesce_p() 1535 bool reg1 = use_register_for_decl (name1); in gimple_can_coalesce_p() 1548 || ((promote_ssa_mode (name1, &unsigned1) in gimple_can_coalesce_p()
|
| /dragonfly/games/number/ |
| HD | number.c | 45 static const char *name1[] = { variable 224 printf("%s hundred", name1[*p - '0']); in number() 234 printf("%s", name1[val]); in number() 238 printf("-%s", name1[val % 10]); in number() 246 printf("%s", name1[*p - '0']); in number()
|
| /dragonfly/tools/tools/netrate/netperf/tcp_stream/ |
| HD | tcp_stream.c | 58 const char *msgsz, *sockbuf, *name1, *name2; in main() local 286 name1 = "TCP_STREAM"; in main() 289 name1 = "TCP_MAERTS"; in main() 295 name1 = "TCP_MAERTS"; in main() 297 name1 = "TCP_SENDFILE"; in main() 300 printf("%s%s %.2f Mbps\n", name1, name2, result); in main()
|
| /dragonfly/contrib/cvs-1.12/diff/ |
| HD | diff.c | 939 compare_files (dir0, name0, dir1, name1, depth) in compare_files() argument 941 char const *name0, *name1; 955 if (! ((name0 != 0 && name1 != 0) 956 || (unidirectional_new_file_flag && name1 != 0) 959 char const *name = name0 == 0 ? name1 : name0; 972 inf[1].desc = name1 == 0 ? -1 : -2; 977 name0 = name1; 978 if (name1 == 0) 979 name1 = name0; 982 inf[1].name = dir1 == 0 ? name1 : (free1 = dir_file_pathname (dir1, name1));
|
| HD | dir.c | 180 char const *name1 = filevec[1].name; local 202 name1, nameorder < 0 ? 0 : *names1++,
|
| HD | util.c | 176 setup_output (name0, name1, depth) in setup_output() argument 177 char const *name0, *name1; in setup_output() 181 current_name1 = name1;
|
| /dragonfly/bin/cpdup/ |
| HD | hcproto.c | 1498 hc_link(struct HostConf *hc, const char *name1, const char *name2) in hc_link() argument 1506 return(link(name1, name2)); in hc_link() 1509 hcc_leaf_string(trans, LC_PATH1, name1); in hc_link() 1522 const char *name1 = NULL; in rc_link() local 1528 name1 = HCC_STRING(item); in rc_link() 1539 if (name1 == NULL || name2 == NULL) in rc_link() 1541 return(link(name1, name2)); in rc_link() 1744 hc_symlink(struct HostConf *hc, const char *name1, const char *name2) in hc_symlink() argument 1752 return(symlink(name1, name2)); in hc_symlink() 1755 hcc_leaf_string(trans, LC_PATH1, name1); in hc_symlink() [all …]
|
| HD | hcproto.h | 113 int hc_link(struct HostConf *hc, const char *name1, const char *name2); 118 int hc_symlink(struct HostConf *hc, const char *name1, const char *name2); 119 int hc_rename(struct HostConf *hc, const char *name1, const char *name2);
|
| /dragonfly/usr.sbin/makefs/hammer2/ |
| HD | hammer2_xops.c | 266 name = xop->head.name1; in hammer2_xop_nresolve() 354 name = xop->head.name1; in hammer2_xop_unlink() 598 name = xop->head.name1; in hammer2_xop_nrename() 622 xop->head.name1, in hammer2_xop_nrename() 662 bcmp(xop->head.name1, xop->head.name2, xop->head.name1_len) != 0) { in hammer2_xop_nrename() 1089 bcopy(xop->head.name1, chain->bref.check.buf, in hammer2_xop_inode_mkdirent() 1092 bcopy(xop->head.name1, chain->data->buf, in hammer2_xop_inode_mkdirent() 1156 if (xop->head.name1) { in hammer2_xop_inode_create() 1157 bcopy(xop->head.name1, in hammer2_xop_inode_create() 1232 if (xop->head.name1) { in hammer2_xop_inode_create_det() [all …]
|
| HD | hammer2_admin.c | 412 xop->name1 = kmalloc(name_len + 1, M_HAMMER2, M_WAITOK | M_ZERO); in hammer2_xop_setname() 414 bcopy(name, xop->name1, name_len); in hammer2_xop_setname() 430 xop->name1 = kmalloc(name_len + 1, M_HAMMER2, M_WAITOK | M_ZERO); in hammer2_xop_setname_inum() 432 ksnprintf(xop->name1, name_len + 1, "0x%016jx", (intmax_t)inum); in hammer2_xop_setname_inum() 803 if (xop->name1) { in hammer2_xop_retire() 804 kfree(xop->name1, M_HAMMER2); in hammer2_xop_retire() 805 xop->name1 = NULL; in hammer2_xop_retire()
|
| /dragonfly/sys/vfs/hammer2/ |
| HD | hammer2_xops.c | 263 name = xop->head.name1; in hammer2_xop_nresolve() 351 name = xop->head.name1; in hammer2_xop_unlink() 595 name = xop->head.name1; in hammer2_xop_nrename() 619 xop->head.name1, in hammer2_xop_nrename() 659 bcmp(xop->head.name1, xop->head.name2, xop->head.name1_len) != 0) { in hammer2_xop_nrename() 1086 bcopy(xop->head.name1, chain->bref.check.buf, in hammer2_xop_inode_mkdirent() 1089 bcopy(xop->head.name1, chain->data->buf, in hammer2_xop_inode_mkdirent() 1153 if (xop->head.name1) { in hammer2_xop_inode_create() 1154 bcopy(xop->head.name1, in hammer2_xop_inode_create() 1229 if (xop->head.name1) { in hammer2_xop_inode_create_det() [all …]
|
| HD | hammer2_admin.c | 365 xop->name1 = kmalloc(name_len + 1, M_HAMMER2, M_WAITOK | M_ZERO); in hammer2_xop_setname() 367 bcopy(name, xop->name1, name_len); in hammer2_xop_setname() 383 xop->name1 = kmalloc(name_len + 1, M_HAMMER2, M_WAITOK | M_ZERO); in hammer2_xop_setname_inum() 385 ksnprintf(xop->name1, name_len + 1, "0x%016jx", (intmax_t)inum); in hammer2_xop_setname_inum() 746 if (xop->name1) { in hammer2_xop_retire() 747 kfree(xop->name1, M_HAMMER2); in hammer2_xop_retire() 748 xop->name1 = NULL; in hammer2_xop_retire()
|
| /dragonfly/sbin/sysctl/ |
| HD | sysctl.c | 981 int name1[22], name2[22]; in sysctl_all() local 985 name1[0] = 0; in sysctl_all() 986 name1[1] = 2; in sysctl_all() 989 memcpy(name1+2, oid, len * sizeof(int)); in sysctl_all() 992 name1[2] = 1; in sysctl_all() 997 retval = sysctl(name1, l1, name2, &l2, 0, 0); in sysctl_all() 1018 memcpy(name1+2, name2, l2 * sizeof(int)); in sysctl_all()
|
| /dragonfly/contrib/lvm2/dist/libdm/ |
| HD | libdm-report.c | 344 static int _is_same_field(const char *name1, const char *name2, in _is_same_field() argument 350 if (!strncasecmp(name1, name2, len2) && strlen(name1) == len2) in _is_same_field() 355 if (!strncasecmp(prefix, name1, prefix_len) && in _is_same_field() 356 !strncasecmp(name1 + prefix_len, name2, len2) && in _is_same_field() 357 strlen(name1) == prefix_len + len2) in _is_same_field()
|
| /dragonfly/test/stress/fsstress/ |
| HD | fsstress.c | 881 link_path(pathname_t *name1, pathname_t *name2) in link_path() argument 890 rval = link(name1->path, name2->path); in link_path() 893 separate_pathname(name1, buf1, &newname1); in link_path() 911 MAX(3 + name1->len, newname2.len); in link_path() 923 append_pathname(&newname1, name1->path); in link_path() 1111 rename_path(pathname_t *name1, pathname_t *name2) in rename_path() argument 1120 rval = rename(name1->path, name2->path); in rename_path() 1123 separate_pathname(name1, buf1, &newname1); in rename_path() 1141 MAX(3 + name1->len, newname2.len); in rename_path() 1153 append_pathname(&newname1, name1->path); in rename_path() [all …]
|
| /dragonfly/contrib/gdb-7/gdb/ |
| HD | minsyms.c | 993 const char *name1 = SYMBOL_LINKAGE_NAME (fn1); in compare_minimal_symbols() local 996 if (name1 && name2) /* both have names */ in compare_minimal_symbols() 997 return strcmp (name1, name2); in compare_minimal_symbols() 1000 else if (name1) /* fn2 has no name, so it is "less". */ in compare_minimal_symbols()
|
| /dragonfly/stand/lib/ |
| HD | dosfs.h | 81 u_char name1[5][2]; /* 1st name area */ member
|
| /dragonfly/contrib/ncurses/progs/ |
| HD | infocmp.c | 1130 char name1[NAMESIZE], name2[NAMESIZE]; in file_comparison() local 1132 (void) canonical_name(qp->tterm.term_names, name1); in file_comparison() 1135 (void) printf("%s = %s\n", name1, name2); in file_comparison() 1151 char name1[NAMESIZE], name2[NAMESIZE]; in file_comparison() local 1154 names[0] = name1; in file_comparison() 1161 (void) canonical_name(qp->tterm.term_names, name1); in file_comparison()
|
| /dragonfly/usr.bin/mail/ |
| HD | util.c | 336 cp = skin(name1(mp, reptype)); in nameof() 489 name1(struct message *mp, int reptype) in name1() function
|
| /dragonfly/contrib/binutils-2.34/gold/ |
| HD | gold.cc | 635 const char *name1 in queue_middle_tasks() local 638 const char *name_split = uses_split_stack ? name1 : name2; in queue_middle_tasks() 639 const char *name_nosplit = uses_split_stack ? name2 : name1; in queue_middle_tasks()
|