Searched refs:type2 (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-11-stable/contrib/ncurses/form/
H A Dfld_ftlink.c41 | FIELDTYPE *type2)
52 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) argument
56 T((T_CALLED("link_fieldtype(%p,%p)"), (void *)type1, (void *)type2));
57 if (type1 && type2)
66 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS))
68 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE))
71 nftyp->right = type2;
73 type2->ref++;
/freebsd-11-stable/crypto/heimdal/lib/ntlm/
H A Dtest_ntlm.c52 struct ntlm_type2 type2; local
82 memset(&type2, 0, sizeof(type2));
85 type2.flags = flags;
87 memset(type2.challenge, 0x7f, sizeof(type2.challenge));
88 type2.targetname = rk_UNCONST(target);
89 type2.targetinfo.data = NULL;
90 type2.targetinfo.length = 0;
92 ret = heim_ntlm_encode_type2(&type2,
[all...]
H A Dntlm.c680 heim_ntlm_decode_type2(const struct ntlm_buf *buf, struct ntlm_type2 *type2) argument
689 memset(type2, 0, sizeof(*type2));
704 CHECK(krb5_ret_uint32(in, &type2->flags), 0);
705 if (type2->flags & NTLM_NEG_UNICODE)
707 CHECK(krb5_storage_read(in, type2->challenge, sizeof(type2->challenge)),
708 sizeof(type2->challenge));
713 if (type2->flags & NTLM_NEG_VERSION) {
714 CHECK(krb5_ret_uint32(in, &type2
745 heim_ntlm_encode_type2(const struct ntlm_type2 *type2, struct ntlm_buf *data) argument
[all...]
/freebsd-11-stable/contrib/elftoolchain/libelf/
H A Dgelf_mips64el.c51 uint8_t ssym, type3, type2, type; local
55 type2 = r_info >> 8;
60 new_info |= (Elf64_Xword)type2 << 48;
69 uint8_t ssym, type3, type2, type; local
73 type2 = r_info >> 48;
78 new_info |= (Elf64_Xword)type2 << 8;
/freebsd-11-stable/crypto/heimdal/lib/gssapi/
H A Dtest_ntlm.c56 struct ntlm_type2 type2; local
63 memset(&type2, 0, sizeof(type2));
104 ret = heim_ntlm_decode_type2(&data, &type2);
110 type3.flags = type2.flags;
112 type3.targetname = type2.targetname;
121 type2.challenge,
183 struct ntlm_type2 type2; local
189 memset(&type2, 0, sizeof(type2));
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dvalarith.c93 struct type *type1, *type2, *valptrtype;
98 type2 = check_typedef (VALUE_TYPE (arg2));
101 || TYPE_CODE (type2) == TYPE_CODE_PTR)
104 || TYPE_CODE (type2) == TYPE_CODE_INT))
119 valptrtype = type2;
137 struct type *type1, *type2;
141 type2 = check_typedef (VALUE_TYPE (arg2));
145 if (TYPE_CODE (type2) == TYPE_CODE_INT)
154 else if (TYPE_CODE (type2) == TYPE_CODE_PTR
156 == TYPE_LENGTH (check_typedef (TYPE_TARGET_TYPE (type2))))
92 struct type *type1, *type2, *valptrtype; local
136 struct type *type1, *type2; local
294 struct type *type1, *type2; local
623 struct type *type2 = check_typedef (VALUE_TYPE (arg2)); local
751 struct type *type1, *type2; local
1221 struct type *type1, *type2; local
1280 struct type *type1, *type2; local
[all...]
H A Dax-gdb.c92 static int type_wider_than (struct type *type1, struct type *type2);
93 static struct type *max_type (struct type *type1, struct type *type2);
764 type_wider_than (struct type *type1, struct type *type2)
766 return (TYPE_LENGTH (type1) > TYPE_LENGTH (type2)
767 || (TYPE_LENGTH (type1) == TYPE_LENGTH (type2) argument
769 && !TYPE_UNSIGNED (type2)));
775 max_type (struct type *type1, struct type *type2)
777 return type_wider_than (type1, type2) ? type1 : type2;
756 type_wider_than(struct type *type1, struct type *type2) argument
H A Dvalops.c211 struct type *type2; local
221 type2 = check_typedef (VALUE_TYPE (arg2));
234 int val_length = TYPE_LENGTH (type2);
254 && TYPE_CODE (type2) == TYPE_CODE_ARRAY)
257 if (TYPE_CODE (type2) == TYPE_CODE_FUNC)
260 type2 = check_typedef (VALUE_TYPE (arg2));
261 COERCE_VARYING_ARRAY (arg2, type2);
262 code2 = TYPE_CODE (type2);
287 arg2, 0, type2, 1);
308 switch (TYPE_CODE (TYPE_TARGET_TYPE (type2)))
[all...]
H A Dada-lang.c6781 struct type *type2 = VALUE_TYPE (val);
6782 if (type == type2)
6785 CHECK_TYPEDEF (type2);
6788 if (TYPE_CODE (type2) == TYPE_CODE_PTR
6792 type2 = VALUE_TYPE (val);
6795 if (TYPE_CODE (type2) == TYPE_CODE_ARRAY
6798 if (TYPE_LENGTH (type2) != TYPE_LENGTH (type)
6799 || TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
6800 != TYPE_LENGTH (TYPE_TARGET_TYPE (type2)))
6767 struct type *type2 = VALUE_TYPE (val); local
/freebsd-11-stable/crypto/heimdal/lib/gssapi/ntlm/
H A Dkdc.c253 struct ntlm_type2 type2; local
258 memset(&type2, 0, sizeof(type2));
289 ret = krb5_ntlm_init_get_flags(c->context, c->ntlm, &type2.flags);
294 *ret_flags = type2.flags;
302 if (challange.length != sizeof(type2.challenge)) {
306 memcpy(type2.challenge, challange.data, sizeof(type2.challenge));
310 &type2.targetname);
318 free(type2
[all...]
H A Dinit_sec_context.c303 struct ntlm_type2 type2; local
312 ret = heim_ntlm_decode_type2(&data, &type2);
319 ctx->flags = type2.flags;
321 /* XXX check that type2.targetinfo matches `target_name�� */
327 type3.flags = type2.flags;
328 type3.targetname = type2.targetname;
335 if (1 || type2.targetinfo.length == 0) {
338 if (type2.flags & NTLM_NEG_NTLM2_SESSION) {
349 type2.challenge,
356 type2
[all...]
/freebsd-11-stable/crypto/openssl/crypto/objects/
H A Dobjects.h1025 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
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) \
1031 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1032 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
1033 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1062 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, n
[all...]
/freebsd-11-stable/crypto/heimdal/kuser/
H A Dkdigest.c435 struct ntlm_type2 type2; local
441 memset(&type2, 0, sizeof(type2));
465 if (challenge.length != sizeof(type2.challenge))
467 memcpy(type2.challenge, challenge.data, sizeof(type2.challenge));
470 ret = krb5_ntlm_init_get_flags(context, ntlm, &type2.flags);
474 krb5_ntlm_init_get_targetname(context, ntlm, &type2.targetname);
475 type2.targetinfo.data = zero2;
476 type2
[all...]
/freebsd-11-stable/crypto/heimdal/kcm/
H A Dprotocol.c1419 * type2:data
1439 struct ntlm_type2 type2; local
1447 memset(&type2, 0, sizeof(type2));
1478 ret = heim_ntlm_decode_type2(&ndata, &type2);
1483 if (domain && strcmp(domain, type2.targetname) == 0) {
1489 type3.flags = type2.flags;
1490 type3.targetname = type2.targetname;
1497 if (1 || type2.targetinfo.length == 0) {
1500 if (type2
[all...]
/freebsd-11-stable/contrib/gcc/cp/
H A Dcall.c1549 tree type1, tree type2, tree *args, tree *argtypes,
1559 types[1] = type2;
1638 tree type2, tree *args, tree *argtypes, int flags)
1645 type2 = integer_type_node;
1735 && TYPE_PTR_TO_MEMBER_P (type2))
1738 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
1741 && (TYPE_PTRMEMFUNC_P (type2)
1742 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
1790 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
1792 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1548 build_builtin_candidate(struct z_candidate **candidates, tree fnname, tree type1, tree type2, tree *args, tree *argtypes, int flags) argument
1636 add_builtin_candidate(struct z_candidate **candidates, enum tree_code code, enum tree_code code2, tree fnname, tree type1, tree type2, tree *args, tree *argtypes, int flags) argument
6170 tree type1, type2; local
[all...]
H A Dtypeck2.c163 tree type2 = (tree)val2;
165 return (pat1->type == type2);
162 tree type2 = (tree)val2; local
/freebsd-11-stable/sys/sys/
H A Dsdt.h134 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2)
135 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3)
136 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\
348 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \
352 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
355 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \
359 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
363 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, \
368 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-alias-warnings.c867 nonstandard_alias_types_p (tree type1, tree type2)
872 if (VOID_TYPE_P (type1) || VOID_TYPE_P (type2))
876 set2 = get_alias_set (type2);
864 nonstandard_alias_types_p(tree type1, tree type2) argument
H A Dtarget.h410 int (* comp_type_attributes) (tree type1, tree type2);
744 const char *(*invalid_binary_op) (int op, tree type1, tree type2);
H A Dc-typeck.c786 comptypes (tree type1, tree type2)
791 val = comptypes_internal (type1, type2);
804 comptypes_internal (tree type1, tree type2)
807 tree t2 = type2;
3373 tree type2;
3393 type2 = TREE_TYPE (op2);
3394 code2 = TREE_CODE (type2);
3406 if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
3408 if (type1 == type2)
3418 result_type = c_common_type (type1, type2);
782 comptypes(tree type1, tree type2) argument
799 comptypes_internal(tree type1, tree type2) argument
3355 tree type2; local
[all...]
H A Dstub-objc.c97 objc_common_type (tree ARG_UNUSED (type1), tree ARG_UNUSED (type2))
H A Dipa-cp.c239 enum cvalue_type type1, enum cvalue_type type2)
241 gcc_assert (ipcp_type_is_const (type1) && ipcp_type_is_const (type2));
242 if (type1 != type2)
237 ipcp_cval_equal_cvalues(union parameter_info *const_val1, union parameter_info *const_val2, enum cvalue_type type1, enum cvalue_type type2) argument
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DMips.cpp467 RelType type2 = (type >> 8) & 0xff; local
469 if (type2 == R_MIPS_NONE && type3 == R_MIPS_NONE)
471 if (type2 == R_MIPS_64 && type3 == R_MIPS_NONE)
472 return std::make_pair(type2, val);
473 if (type2 == R_MIPS_SUB && (type3 == R_MIPS_HI16 || type3 == R_MIPS_LO16))
/freebsd-11-stable/bin/sh/tests/builtins/
H A DMakefile164 ${PACKAGE}FILES+= type2.0
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dpkinit.c1199 heim_oid type2; local
1202 ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL);
1219 ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL);
1223 if (der_heim_oid_cmp(&type2, &asn1_oid_id_pkcs7_signedData)) {
1227 der_free_oid(&type2);
1231 der_free_oid(&type2);

Completed in 264 milliseconds

12