Home
last modified time | relevance | path

Searched refs:newtype (Results 1 – 22 of 22) sorted by relevance

/freebsd-12-stable/contrib/gcc/
Dconvert.c230 tree newtype = type; in convert_to_real() local
235 newtype = TREE_TYPE (arg0); in convert_to_real()
240 && TYPE_PRECISION (newtype) < TYPE_PRECISION (itype) in convert_to_real()
241 && (TYPE_MODE (newtype) == TYPE_MODE (double_type_node) in convert_to_real()
242 || TYPE_MODE (newtype) == TYPE_MODE (float_type_node))) in convert_to_real()
245 tree fn = mathfn_built_in (newtype, fcode); in convert_to_real()
249 arglist = build_tree_list (NULL_TREE, fold (convert_to_real (newtype, arg0))); in convert_to_real()
251 if (newtype == type) in convert_to_real()
324 tree newtype = type; in convert_to_real() local
328 newtype = dfloat32_type_node; in convert_to_real()
[all …]
Dgengtype-yacc.y144 type_p newtype = NULL; variable
146 newtype = (type_p) 1;
150 p->type = newtype;
154 p->type = newtype;
Dc-decl.c1014 match_builtin_function_types (tree newtype, tree oldtype) in match_builtin_function_types() argument
1022 newrettype = TREE_TYPE (newtype); in match_builtin_function_types()
1028 newargs = TYPE_ARG_TYPES (newtype); in match_builtin_function_types()
1054 tree newtype, tree oldtype) in diagnose_arglist_conflict() argument
1059 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype)) in diagnose_arglist_conflict()
1062 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0))) in diagnose_arglist_conflict()
1067 t = TYPE_ARG_TYPES (newtype); in diagnose_arglist_conflict()
1094 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype) in validate_proto_after_old_defn() argument
1102 newargs = TYPE_ARG_TYPES (newtype); in validate_proto_after_old_defn()
1185 tree newtype, oldtype; in diagnose_mismatched_decls() local
[all …]
Dfold-const.c8076 tree newtype = TREE_TYPE (targ0); in fold_comparison() local
8078 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype)) in fold_comparison()
8079 newtype = TREE_TYPE (targ1); in fold_comparison()
8082 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0))) in fold_comparison()
8083 return fold_build2 (code, type, fold_convert (newtype, targ0), in fold_comparison()
8084 fold_convert (newtype, targ1)); in fold_comparison()
10689 tree newtype = lang_hooks.types.unsigned_type (TREE_TYPE (arg0)); in fold_binary() local
10690 tree newmod = fold_build2 (TREE_CODE (arg0), newtype, in fold_binary()
10691 fold_convert (newtype, in fold_binary()
10693 fold_convert (newtype, in fold_binary()
[all …]
Dbuiltins.c6854 tree newtype = TREE_TYPE (arg0); in fold_trunc_transparent_mathfn() local
6857 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (ftype) in fold_trunc_transparent_mathfn()
6858 && (decl = mathfn_built_in (newtype, fcode))) in fold_trunc_transparent_mathfn()
6861 build_tree_list (NULL_TREE, fold_convert (newtype, arg0)); in fold_trunc_transparent_mathfn()
6892 tree newtype = TREE_TYPE (arg0); in fold_fixed_mathfn() local
6895 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (ftype) in fold_fixed_mathfn()
6896 && (decl = mathfn_built_in (newtype, fcode))) in fold_fixed_mathfn()
6899 build_tree_list (NULL_TREE, fold_convert (newtype, arg0)); in fold_fixed_mathfn()
DChangeLog-200231063 use arguments from newtype.
DChangeLog-200447000 * c-decl.c (diagnose_mismatched_decls): Whenever newtype or
/freebsd-12-stable/tests/sys/cddl/zfs/tests/slog/
Dslog_003_pos.ksh70 for newtype in "" "mirror"; do
73 log_must $ZPOOL add $TESTPOOL log $newtype $LDEV2
76 log_must verify_slog_device $TESTPOOL $ldev ONLINE $newtype
/freebsd-12-stable/contrib/binutils/binutils/
Drdcoff.c146 int newtype; in parse_coff_type() local
148 newtype = DECREF (ntype); in parse_coff_type()
152 type = parse_coff_type (abfd, symbols, types, coff_symno, newtype, in parse_coff_type()
158 type = parse_coff_type (abfd, symbols, types, coff_symno, newtype, in parse_coff_type()
186 type = parse_coff_type (abfd, symbols, types, coff_symno, newtype, in parse_coff_type()
/freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/
Dcmds.c267 changetype(int newtype, int show) in changetype() argument
272 if (newtype == 0) in changetype()
273 newtype = TYPE_I; in changetype()
274 if (newtype == curtype) in changetype()
279 if (newtype == p->t_type) in changetype()
282 printf("ftp: internal error: unknown type %d\n", newtype); in changetype()
285 if (newtype == TYPE_L && bytename[0] != '\0') in changetype()
290 curtype = newtype; in changetype()
/freebsd-12-stable/contrib/gcc/cp/
Dname-lookup.c2067 tree *newval, tree *newtype) in do_nonmember_using_decl() argument
2071 *newval = *newtype = NULL_TREE; in do_nonmember_using_decl()
2201 *newtype = decls.type; in do_nonmember_using_decl()
2202 if (oldtype && *newtype && !decls_match (oldtype, *newtype)) in do_nonmember_using_decl()
2209 *newval = *newtype; in do_nonmember_using_decl()
2210 *newtype = NULL_TREE; in do_nonmember_using_decl()
2220 tree oldval, oldtype, newval, newtype; in do_local_using_decl() local
2234 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype); in do_local_using_decl()
2259 if (newtype) in do_local_using_decl()
2261 push_local_binding (name, newtype, PUSH_USING); in do_local_using_decl()
[all …]
Ddecl.c1614 tree newtype = TREE_TYPE (newdecl); in duplicate_decls() local
1617 if (newtype != error_mark_node && oldtype != error_mark_node in duplicate_decls()
1618 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype)) in duplicate_decls()
1619 CLASSTYPE_FRIEND_CLASSES (newtype) in duplicate_decls()
1672 tree newtype; in duplicate_decls() local
1675 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl)); in duplicate_decls()
1679 && newtype == DECL_ORIGINAL_TYPE (newdecl)) in duplicate_decls()
1680 newtype = oldtype; in duplicate_decls()
1708 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype; in duplicate_decls()
1714 if (! same_type_p (newtype, oldtype) in duplicate_decls()
[all …]
/freebsd-12-stable/contrib/tnftp/src/
Dcmds.c281 changetype(int newtype, int show) in changetype() argument
286 if (newtype == 0) in changetype()
287 newtype = TYPE_I; in changetype()
288 if (newtype == curtype) in changetype()
293 if (newtype == p->t_type) in changetype()
296 errx(1, "changetype: unknown type %d", newtype); in changetype()
298 if (newtype == TYPE_L && bytename[0] != '\0') in changetype()
303 curtype = newtype; in changetype()
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
Ddsl_dir.h163 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx);
/freebsd-12-stable/sbin/fsdb/
Dfsdb.c143 CMDFUNC(newtype); /* change type */
180 { "chtype", "Change type of current inode to TYPE", 2, 2, FL_WR, newtype },
897 CMDFUNCSTART(newtype) in CMDFUNCSTART() argument
/freebsd-12-stable/sys/ufs/ufs/
Dufs_lookup.c1291 ufs_dirrewrite(dp, oip, newinum, newtype, isrmdir) in ufs_dirrewrite() argument
1294 int newtype;
1336 ep->d_type = newtype;
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
Ddsl_dir.c1550 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_transfer_space() argument
1554 ASSERT(newtype < DD_USED_NUM); in dsl_dir_transfer_space()
1565 dsl_dir_phys(dd)->dd_used_breakdown[newtype] >= -delta); in dsl_dir_transfer_space()
1568 dsl_dir_phys(dd)->dd_used_breakdown[newtype] += delta; in dsl_dir_transfer_space()
Ddnode.c410 dnode_setbonus_type(dnode_t *dn, dmu_object_type_t newtype, dmu_tx_t *tx) in dnode_setbonus_type() argument
415 dn->dn_bonustype = newtype; in dnode_setbonus_type()
/freebsd-12-stable/crypto/openssh/
Dsshkey.c2891 int newtype; in sshkey_to_certified() local
2896 newtype = KEY_RSA_CERT; in sshkey_to_certified()
2899 newtype = KEY_DSA_CERT; in sshkey_to_certified()
2902 newtype = KEY_ECDSA_CERT; in sshkey_to_certified()
2905 newtype = KEY_ECDSA_SK_CERT; in sshkey_to_certified()
2909 newtype = KEY_ED25519_SK_CERT; in sshkey_to_certified()
2912 newtype = KEY_ED25519_CERT; in sshkey_to_certified()
2916 newtype = KEY_XMSS_CERT; in sshkey_to_certified()
2924 k->type = newtype; in sshkey_to_certified()
/freebsd-12-stable/contrib/gdb/gdb/
Dgdbtypes.c1424 struct type *newtype; in check_typedef() local
1430 newtype = lookup_transparent_type (name); in check_typedef()
1431 if (newtype) in check_typedef()
1432 make_cvr_type (is_const, is_volatile, is_restrict, newtype, &type); in check_typedef()
/freebsd-12-stable/contrib/sendmail/src/
Dqueue.c8727 int newtype; local
8941 newtype = (reason == NULL ? NORMQF_LETTER : QUARQF_LETTER);
8942 if (oldtype == newtype)
8950 (void) sm_strlcpy(newqf, queuename(e, newtype), sizeof(newqf));
8971 if (oldtype == newtype)
9003 if (!failing && oldtype != newtype)
/freebsd-12-stable/sys/ufs/ffs/
Dffs_softdep.c1228 workitem_reassign(item, newtype) in workitem_reassign() argument
1230 int newtype;
1240 ump->softdep_curdeps[newtype] += 1;
1245 dep_current[newtype]++;
1247 if (dep_current[newtype] > dep_highuse[newtype])
1248 dep_highuse[newtype] = dep_current[newtype];
1249 dep_total[newtype]++;
1251 item->wk_type = newtype;