Home
last modified time | relevance | path

Searched refs:def_type (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
H A Dstore_cred.c53 const char *def_type = NULL; in _gsskrb5_store_cred() local
96 def_type = krb5_cc_get_type(context, def_ccache); in _gsskrb5_store_cred()
112 if (def_type == NULL || in _gsskrb5_store_cred()
113 !krb5_cc_support_switch(context, def_type)) { in _gsskrb5_store_cred()
118 ret = krb5_cc_new_unique(context, def_type, NULL, &id); in _gsskrb5_store_cred()
153 if (default_cred && def_type != NULL && in _gsskrb5_store_cred()
154 krb5_cc_support_switch(context, def_type)) in _gsskrb5_store_cred()
/netbsd-src/sys/arch/atari/dev/
H A Dfd.c188 static short def_type = 0; /* Reflects config-switches */ variable
191 #define FLP_TYPE(dev) ( DISKPART(dev) == 0 ? def_type : DISKPART(dev) - 1 )
412 def_type = (swtch & CFG_SWITCH_NOHD) ? FLP_TYPE_720 : FLP_TYPE_144; in fdattach()
413 type = &fdtypes[def_type]; in fdattach()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-vectorizer.h144 enum vect_def_type def_type; member
187 #define SLP_TREE_DEF_TYPE(S) (S)->def_type
1003 enum vect_def_type def_type;
1205 #define STMT_VINFO_DEF_TYPE(S) (S)->def_type
H A Dtree-vect-slp.c1262 vect_def_type def_type = STMT_VINFO_DEF_TYPE (stmt_info); in vect_build_slp_tree_2() local
1264 if (def_type == vect_induction_def) in vect_build_slp_tree_2()
1271 else if (def_type == vect_reduction_def in vect_build_slp_tree_2()
1272 || def_type == vect_double_reduction_def in vect_build_slp_tree_2()
1273 || def_type == vect_nested_cycle) in vect_build_slp_tree_2()
1278 if (STMT_VINFO_DEF_TYPE (other_info) != def_type) in vect_build_slp_tree_2()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-vectorizer.h200 enum vect_def_type def_type; member
285 #define SLP_TREE_DEF_TYPE(S) (S)->def_type
1210 enum vect_def_type def_type;
1415 #define STMT_VINFO_DEF_TYPE(S) (S)->def_type
H A Dtree-vect-slp.cc1670 vect_def_type def_type = STMT_VINFO_DEF_TYPE (stmt_info); in vect_build_slp_tree_2() local
1671 if (def_type == vect_induction_def) in vect_build_slp_tree_2()
1684 else if (def_type == vect_reduction_def in vect_build_slp_tree_2()
1685 || def_type == vect_double_reduction_def in vect_build_slp_tree_2()
1686 || def_type == vect_nested_cycle) in vect_build_slp_tree_2()
1693 if (STMT_VINFO_DEF_TYPE (other_info) != def_type) in vect_build_slp_tree_2()
1705 if (all_same && def_type == vect_reduction_def) in vect_build_slp_tree_2()
1708 else if (def_type != vect_internal_def) in vect_build_slp_tree_2()
H A DChangeLog-20151357 * tree-vectorizer.h (struct _slp_tree): Add def_type member.
1364 do not push a NULL as child but instead set its def_type to
H A DChangeLog-200710895 (new_stmt_vec_info): When setting def_type for phis differentiate