| /freebsd-12.1/crypto/openssl/include/openssl/ |
| H A D | objects.h | 76 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument 78 static int nm##_cmp(type1 const *, type2 const *); \ 81 # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument 82 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp) 83 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument 84 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) 113 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument 116 type1 const *a = a_; \ 127 # define IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument 130 type1 const *a = a_; \ [all …]
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | valarith.c | 112 valptrtype = type1; in value_add() 136 struct type *type1, *type2; in value_sub() local 294 struct type *type1, *type2; in binop_user_defined_p() local 316 struct type *type1; in unop_user_defined_p() local 325 type1 = TYPE_TARGET_TYPE (type1); in unop_user_defined_p() 637 type1 = tmp; in value_concat() 858 TYPE_LENGTH (type1), in value_binop() 1163 struct type *type1; in value_logical_not() local 1171 len = TYPE_LENGTH (type1); in value_logical_not() 1230 code1 = TYPE_CODE (type1); in value_equal() [all …]
|
| H A 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()
|
| H A 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()
|
| H A D | ada-lang.c | 2900 struct type *type1 = in possible_user_operator_p() local 3212 if (type0 == type1) in equiv_types() 3214 if (type0 == NULL || type1 == NULL in equiv_types() 3245 struct type *type1 = SYMBOL_TYPE (sym1); in lesseq_defined_than() local 3250 TYPE_CODE (type0) == TYPE_CODE (type1) in lesseq_defined_than() 3251 && (equiv_types (type0, type1) in lesseq_defined_than() 5811 if (type1 == NULL) in ada_prefer_type() 5822 && !ada_is_array_descriptor (type1)) in ada_prefer_type() 6376 if (ada_type_name (type1) == NULL) in static_unwrap_type() 6379 return static_unwrap_type (type1); in static_unwrap_type() [all …]
|
| H A 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()
|
| H A 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-12.1/crypto/heimdal/lib/gssapi/ |
| H A D | test_ntlm.c | 55 struct ntlm_type1 type1; in test_libntlm_v1() local 62 memset(&type1, 0, sizeof(type1)); 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() 182 struct ntlm_type1 type1; in test_libntlm_v2() local 188 memset(&type1, 0, sizeof(type1)); in test_libntlm_v2() 194 type1.hostname = NULL; in test_libntlm_v2() 195 type1.os[0] = 0; in test_libntlm_v2() [all …]
|
| /freebsd-12.1/contrib/ncurses/form/ |
| H A D | fld_ftlink.c | 52 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) in NCURSES_EXPORT() 56 T((T_CALLED("link_fieldtype(%p,%p)"), (void *)type1, (void *)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-12.1/crypto/heimdal/lib/ntlm/ |
| H A 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 …]
|
| H A D | ntlm.c | 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() 645 if (type1->domain) in heim_ntlm_encode_type1() 646 CHECK(put_string(out, 0, type1->domain), 0); in heim_ntlm_encode_type1() 647 if (type1->hostname) in heim_ntlm_encode_type1() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/Target/ |
| H A D | GenericOpcodes.td | 25 let InOperandList = (ins type1:$src); 33 let InOperandList = (ins type1:$src); 41 let InOperandList = (ins type1:$src); 50 let InOperandList = (ins type1:$src); 80 let InOperandList = (ins type1:$src); 86 let InOperandList = (ins type1:$src); 92 let InOperandList = (ins type1:$src); 161 let InOperandList = (ins type1:$src); 279 let InOperandList = (ins unknown:$tst, type1:$src1, type1:$src2); 286 let InOperandList = (ins unknown:$tst, type1:$src1, type1:$src2); [all …]
|
| /freebsd-12.1/crypto/heimdal/lib/gssapi/ntlm/ |
| H A 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()
|
| H A 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-12.1/contrib/gcc/cp/ |
| H A D | call.c | 1558 types[0] = type1; in build_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() 1810 type2 = type1; in add_builtin_candidate() 1815 type1 = type2; in add_builtin_candidate() 1836 type2 = type1; in add_builtin_candidate() 1843 type1 = type2; in add_builtin_candidate() 1957 type2 = type1; in add_builtin_candidate() 1965 type1 = build_reference_type (type1); in add_builtin_candidate() 1989 if (!(TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1)) in add_builtin_candidate() [all …]
|
| H A D | typeck.c | 1143 int q1 = cp_type_quals (type1); in at_least_as_qualified_p() 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() 3211 TREE_TYPE (type1))) in build_binary_op() 3421 result_type = type1; in build_binary_op() 3431 result_type = type1; in build_binary_op() 3490 type1)); in build_binary_op() 3529 result_type = type1; in build_binary_op() 3537 result_type = type1; in build_binary_op() [all …]
|
| /freebsd-12.1/sys/sys/ |
| H A D | sdt.h | 135 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) argument 136 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) argument 137 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) argument 138 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\ argument 344 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \ argument 347 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ 350 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \ argument 353 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ 357 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \ argument 360 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ [all …]
|
| /freebsd-12.1/usr.bin/mail/ |
| H A D | cmd1.c | 253 return (type1(msgvec, 1, 1)); in more() 264 return (type1(msgvec, 0, 1)); in More() 275 return (type1(msgvec, 1, 0)); in type() 286 return (type1(msgvec, 0, 0)); in Type() 294 type1(int *msgvec, int doign, int page) in type1() function
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | c-typeck.c | 801 tree t1 = type1; in comptypes_internal() 3354 tree type1; in build_conditional_expr() local 3390 if (type1 == type2) in build_conditional_expr() 3391 result_type = type1; in build_conditional_expr() 3459 result_type = type1; in build_conditional_expr() 8238 tree type0, type1; in build_binary_op() local 8580 result_type = type1; in build_binary_op() 8589 result_type = type1; in build_binary_op() 8596 result_type = type1; in build_binary_op() 8634 result_type = type1; in build_binary_op() [all …]
|
| H A D | c-common.c | 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() 1851 if (type1 == long_integer_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() 1865 if (type1 == intHI_type_node) in c_common_unsigned_type() 1867 if (type1 == intQI_type_node) in c_common_unsigned_type() 1879 if (type1 == unsigned_char_type_node || type1 == char_type_node) in c_common_signed_type() 1881 if (type1 == unsigned_type_node) in c_common_signed_type() [all …]
|
| H A 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()
|
| H A D | target.h | 410 int (* comp_type_attributes) (tree type1, tree type2); 744 const char *(*invalid_binary_op) (int op, tree type1, tree type2);
|
| /freebsd-12.1/usr.sbin/bhyve/ |
| H A D | smbiostbl.c | 585 struct smbios_table_type1 *type1; in smbios_type1_initializer() local 589 type1 = (struct smbios_table_type1 *)curaddr; in smbios_type1_initializer() 599 uuid_enc_le(&type1->uuid, &uuid); in smbios_type1_initializer() 626 memcpy(&type1->uuid, digest, sizeof (digest)); in smbios_type1_initializer()
|
| /freebsd-12.1/crypto/openssl/doc/man1/ |
| H A D | storeutl.pod | 85 The arg must be formatted as I</type0=value0/type1=value1/type2=...>. 97 The issuer arg must be formatted as I</type0=value0/type1=value1/type2=...>,
|
| /freebsd-12.1/bin/sh/tests/builtins/ |
| H A D | Makefile | 170 ${PACKAGE}FILES+= type1.0 type1.0.stderr
|