| /freebsd-10-stable/contrib/gdb/gdb/ |
| D | valarith.c | 92 struct type *type1, *type2, *valptrtype; in value_add() local 96 type1 = check_typedef (VALUE_TYPE (arg1)); in value_add() 99 if ((TYPE_CODE (type1) == TYPE_CODE_PTR in value_add() 102 (TYPE_CODE (type1) == TYPE_CODE_INT in value_add() 108 if (TYPE_CODE (type1) == TYPE_CODE_PTR) in value_add() 112 valptrtype = type1; in value_add() 136 struct type *type1, *type2; in value_sub() local 139 type1 = check_typedef (VALUE_TYPE (arg1)); in value_sub() 142 if (TYPE_CODE (type1) == TYPE_CODE_PTR) in value_sub() 147 LONGEST sz = find_size_for_pointer_math (type1); in value_sub() [all …]
|
| D | gnu-v2-abi.c | 95 struct type *type1 = check_typedef (VALUE_TYPE (arg1)); in gnuv2_virtual_fn_field() local 118 if (TYPE_TARGET_TYPE (context) != type1) in gnuv2_virtual_fn_field() 122 type1 = check_typedef (VALUE_TYPE (arg1)); in gnuv2_virtual_fn_field() 125 context = type1; in gnuv2_virtual_fn_field()
|
| D | ax-gdb.c | 91 static int type_wider_than (struct type *type1, struct type *type2); 92 static struct type *max_type (struct type *type1, struct type *type2); 756 type_wider_than (struct type *type1, struct type *type2) in type_wider_than() argument 758 return (TYPE_LENGTH (type1) > TYPE_LENGTH (type2) in type_wider_than() 759 || (TYPE_LENGTH (type1) == TYPE_LENGTH (type2) in type_wider_than() 760 && TYPE_UNSIGNED (type1) in type_wider_than() 767 max_type (struct type *type1, struct type *type2) in max_type() argument 769 return type_wider_than (type1, type2) ? type1 : type2; in max_type()
|
| D | ada-lang.c | 2900 struct type *type1 = in possible_user_operator_p() local 2912 return (!(numeric_type_p (type0) && numeric_type_p (type1))); in possible_user_operator_p() 2919 return (!(integer_type_p (type0) && integer_type_p (type1))); in possible_user_operator_p() 2927 return (!(scalar_type_p (type0) && scalar_type_p (type1))); in possible_user_operator_p() 2934 || (TYPE_CODE (type1) != TYPE_CODE_ARRAY && in possible_user_operator_p() 2935 (TYPE_CODE (type1) != TYPE_CODE_PTR || in possible_user_operator_p() 2936 TYPE_CODE (TYPE_TARGET_TYPE (type1)) != TYPE_CODE_ARRAY))); in possible_user_operator_p() 2939 return (!(numeric_type_p (type0) && integer_type_p (type1))); in possible_user_operator_p() 3210 equiv_types (struct type *type0, struct type *type1) in equiv_types() argument 3212 if (type0 == type1) in equiv_types() [all …]
|
| D | ada-typeprint.c | 615 struct type *type1 = ada_find_parallel_type (type, "___XVE"); in print_record_type() local 616 if (type1 != NULL) in print_record_type() 617 type = type1; in print_record_type()
|
| D | stabsread.c | 1425 struct type *type1; in read_type() local 1664 type1 = read_type (pp, objfile); in read_type() 1665 type = make_pointer_type (type1, dbx_lookup_type (typenums)); in read_type() 1669 type1 = read_type (pp, objfile); in read_type() 1670 type = make_reference_type (type1, dbx_lookup_type (typenums)); in read_type() 1674 type1 = read_type (pp, objfile); in read_type() 1675 type = make_function_type (type1, dbx_lookup_type (typenums)); in read_type() 1917 type1 = read_type (pp, objfile); in read_type() 1918 type = create_set_type ((struct type *) NULL, type1); in read_type()
|
| /freebsd-10-stable/crypto/heimdal/lib/gssapi/ |
| D | test_ntlm.c | 55 struct ntlm_type1 type1; in test_libntlm_v1() local 62 memset(&type1, 0, sizeof(type1)); in test_libntlm_v1() 66 type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM|flags; in test_libntlm_v1() 67 type1.domain = strdup(domain); in test_libntlm_v1() 68 type1.hostname = NULL; in test_libntlm_v1() 69 type1.os[0] = 0; in test_libntlm_v1() 70 type1.os[1] = 0; in test_libntlm_v1() 72 ret = heim_ntlm_encode_type1(&type1, &data); in test_libntlm_v1() 182 struct ntlm_type1 type1; in test_libntlm_v2() local 188 memset(&type1, 0, sizeof(type1)); in test_libntlm_v2() [all …]
|
| /freebsd-10-stable/contrib/ncurses/form/ |
| D | fld_ftlink.c | 52 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) in NCURSES_EXPORT() 56 T((T_CALLED("link_fieldtype(%p,%p)"), type1, type2)); in NCURSES_EXPORT() 57 if (type1 && type2) in NCURSES_EXPORT() 66 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS)) in NCURSES_EXPORT() 68 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE)) in NCURSES_EXPORT() 70 nftyp->left = type1; in NCURSES_EXPORT() 72 type1->ref++; in NCURSES_EXPORT()
|
| /freebsd-10-stable/crypto/heimdal/lib/ntlm/ |
| D | test_ntlm.c | 51 struct ntlm_type1 type1; in test_parse() local 57 memset(&type1, 0, sizeof(type1)); in test_parse() 59 type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM; in test_parse() 60 type1.domain = rk_UNCONST(domain); in test_parse() 61 type1.hostname = NULL; in test_parse() 62 type1.os[0] = 0; in test_parse() 63 type1.os[1] = 0; in test_parse() 65 ret = heim_ntlm_encode_type1(&type1, &data); in test_parse() 69 memset(&type1, 0, sizeof(type1)); in test_parse() 71 ret = heim_ntlm_decode_type1(&data, &type1); in test_parse() [all …]
|
| D | ntlm.c | 590 heim_ntlm_encode_type1(const struct ntlm_type1 *type1, struct ntlm_buf *data) in heim_ntlm_encode_type1() argument 597 flags = type1->flags; in heim_ntlm_encode_type1() 600 if (type1->domain) { in heim_ntlm_encode_type1() 604 if (type1->hostname) { in heim_ntlm_encode_type1() 608 if (type1->os[0]) in heim_ntlm_encode_type1() 612 if (type1->domain) { in heim_ntlm_encode_type1() 613 domain.length = len_string(0, type1->domain); in heim_ntlm_encode_type1() 621 if (type1->hostname) { in heim_ntlm_encode_type1() 622 hostname.length = len_string(0, type1->hostname); in heim_ntlm_encode_type1() 642 CHECK(krb5_store_uint32(out, type1->os[0]), 0); in heim_ntlm_encode_type1() [all …]
|
| /freebsd-10-stable/crypto/heimdal/lib/gssapi/ntlm/ |
| D | accept_sec_context.c | 110 struct ntlm_type1 type1; in _gss_ntlm_accept_sec_context() local 130 ret = heim_ntlm_decode_type1(&data, &type1); in _gss_ntlm_accept_sec_context() 137 if ((type1.flags & NTLM_NEG_UNICODE) == 0) { in _gss_ntlm_accept_sec_context() 138 heim_ntlm_free_type1(&type1); in _gss_ntlm_accept_sec_context() 144 if (type1.flags & NTLM_NEG_SIGN) in _gss_ntlm_accept_sec_context() 146 if (type1.flags & NTLM_NEG_SIGN) in _gss_ntlm_accept_sec_context() 151 type1.flags, in _gss_ntlm_accept_sec_context() 152 type1.hostname, in _gss_ntlm_accept_sec_context() 153 type1.domain, in _gss_ntlm_accept_sec_context() 156 heim_ntlm_free_type1(&type1); in _gss_ntlm_accept_sec_context()
|
| D | init_sec_context.c | 246 struct ntlm_type1 type1; in _gss_ntlm_init_sec_context() local 282 memset(&type1, 0, sizeof(type1)); in _gss_ntlm_init_sec_context() 284 type1.flags = flags; in _gss_ntlm_init_sec_context() 285 type1.domain = name->domain; in _gss_ntlm_init_sec_context() 286 type1.hostname = NULL; in _gss_ntlm_init_sec_context() 287 type1.os[0] = 0; in _gss_ntlm_init_sec_context() 288 type1.os[1] = 0; in _gss_ntlm_init_sec_context() 290 ret = heim_ntlm_encode_type1(&type1, &data); in _gss_ntlm_init_sec_context()
|
| /freebsd-10-stable/crypto/openssl/crypto/objects/ |
| D | objects.h | 1025 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument 1027 static int nm##_cmp(type1 const *, type2 const *); \ 1028 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) 1030 # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument 1031 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp) 1032 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument 1033 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) 1062 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument 1065 type1 const *a = a_; \ 1069 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \ [all …]
|
| /freebsd-10-stable/contrib/gcc/cp/ |
| D | call.c | 1549 tree type1, tree type2, tree *args, tree *argtypes, in build_builtin_candidate() argument 1558 types[0] = type1; in build_builtin_candidate() 1637 enum tree_code code2, tree fnname, tree type1, in add_builtin_candidate() argument 1674 if (TREE_CODE (type1) == BOOLEAN_TYPE) in add_builtin_candidate() 1678 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1)) in add_builtin_candidate() 1680 type1 = build_reference_type (type1); in add_builtin_candidate() 1695 if (TREE_CODE (type1) == POINTER_TYPE in add_builtin_candidate() 1696 && (TYPE_PTROB_P (type1) in add_builtin_candidate() 1697 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE)) in add_builtin_candidate() 1710 if (TREE_CODE (type1) == POINTER_TYPE) in add_builtin_candidate() [all …]
|
| D | typeck.c | 1141 at_least_as_qualified_p (tree type1, tree type2) in at_least_as_qualified_p() argument 1143 int q1 = cp_type_quals (type1); in at_least_as_qualified_p() 1154 comp_cv_qualification (tree type1, tree type2) in comp_cv_qualification() argument 1156 int q1 = cp_type_quals (type1); in comp_cv_qualification() 1175 comp_cv_qual_signature (tree type1, tree type2) in comp_cv_qual_signature() argument 1177 if (comp_ptr_ttypes_real (type2, type1, -1)) in comp_cv_qual_signature() 1179 else if (comp_ptr_ttypes_real (type1, type2, -1)) in comp_cv_qual_signature() 3086 tree type0, type1; in build_binary_op() local 3184 type1 = TREE_TYPE (op1); in build_binary_op() 3189 code1 = TREE_CODE (type1); in build_binary_op() [all …]
|
| /freebsd-10-stable/sys/sys/ |
| D | sdt.h | 131 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) argument 132 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) argument 133 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) argument 134 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\ argument 338 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \ argument 341 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ 344 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \ argument 347 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ 351 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \ argument 354 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ [all …]
|
| /freebsd-10-stable/usr.bin/mail/ |
| D | cmd1.c | 248 return (type1(msgvec, 1, 1)); in more() 258 return (type1(msgvec, 0, 1)); in More() 268 return (type1(msgvec, 1, 0)); in type() 278 return (type1(msgvec, 0, 0)); in Type() 286 type1(int *msgvec, int doign, int page) in type1() function
|
| /freebsd-10-stable/contrib/gcc/ |
| D | c-typeck.c | 782 comptypes (tree type1, tree type2) in comptypes() argument 787 val = comptypes_internal (type1, type2); in comptypes() 799 comptypes_internal (tree type1, tree type2) in comptypes_internal() argument 801 tree t1 = type1; in comptypes_internal() 2645 tree type1 = TREE_TYPE (would_have_been); in convert_arguments() local 2653 else if (formal_prec != TYPE_PRECISION (type1)) in convert_arguments() 2657 else if (TYPE_UNSIGNED (type) == TYPE_UNSIGNED (type1)) in convert_arguments() 3354 tree type1; in build_conditional_expr() local 3373 type1 = TREE_TYPE (op1); in build_conditional_expr() 3374 code1 = TREE_CODE (type1); in build_conditional_expr() [all …]
|
| D | c-common.c | 1844 tree type1 = TYPE_MAIN_VARIANT (type); in c_common_unsigned_type() local 1845 if (type1 == signed_char_type_node || type1 == char_type_node) in c_common_unsigned_type() 1847 if (type1 == integer_type_node) in c_common_unsigned_type() 1849 if (type1 == short_integer_type_node) in c_common_unsigned_type() 1851 if (type1 == long_integer_type_node) in c_common_unsigned_type() 1853 if (type1 == long_long_integer_type_node) in c_common_unsigned_type() 1855 if (type1 == widest_integer_literal_type_node) in c_common_unsigned_type() 1858 if (type1 == intTI_type_node) in c_common_unsigned_type() 1861 if (type1 == intDI_type_node) in c_common_unsigned_type() 1863 if (type1 == intSI_type_node) in c_common_unsigned_type() [all …]
|
| D | tree-ssa-alias-warnings.c | 864 nonstandard_alias_types_p (tree type1, tree type2) in nonstandard_alias_types_p() argument 869 if (VOID_TYPE_P (type1) || VOID_TYPE_P (type2)) in nonstandard_alias_types_p() 872 set1 = get_alias_set (type1); in nonstandard_alias_types_p()
|
| D | target.h | 410 int (* comp_type_attributes) (tree type1, tree type2); 744 const char *(*invalid_binary_op) (int op, tree type1, tree type2);
|
| D | ipa-prop.c | 364 enum jump_func_type type1) in ipa_callsite_param_set_type() argument 366 IPA_EDGE_REF (cs)->ipa_param_map[i].type = type1; in ipa_callsite_param_set_type()
|
| /freebsd-10-stable/bin/sh/tests/builtins/ |
| D | Makefile | 140 FILES+= type1.0 type1.0.stderr
|
| D | type1.0 | 1 # $FreeBSD: stable/10/bin/sh/tests/builtins/type1.0 165931 2007-01-11 00:25:20Z stefanf $
|
| /freebsd-10-stable/usr.sbin/bhyve/ |
| D | smbiostbl.c | 583 struct smbios_table_type1 *type1; in smbios_type1_initializer() local 587 type1 = (struct smbios_table_type1 *)curaddr; in smbios_type1_initializer() 597 uuid_enc_le(&type1->uuid, &uuid); in smbios_type1_initializer() 624 memcpy(&type1->uuid, digest, sizeof (digest)); in smbios_type1_initializer()
|