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

12

/freebsd-9.3-release/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)"), type1, 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++;
H A Dllib-lform201 FIELDTYPE *type2)
H A Dllib-lformw201 FIELDTYPE *type2)
/freebsd-9.3-release/crypto/heimdal/lib/ntlm/
H A Dtest_ntlm.c54 struct ntlm_type2 type2; local
85 memset(&type2, 0, sizeof(type2));
88 type2.flags = flags;
90 memset(type2.challange, 0x7f, sizeof(type2.challange));
91 type2.targetname = rk_UNCONST(target);
92 type2.targetinfo.data = NULL;
93 type2.targetinfo.length = 0;
95 ret = heim_ntlm_encode_type2(&type2,
[all...]
H A Dntlm.c538 heim_ntlm_decode_type2(const struct ntlm_buf *buf, struct ntlm_type2 *type2) argument
547 memset(type2, 0, sizeof(*type2));
562 CHECK(krb5_ret_uint32(in, &type2->flags), 0);
563 if (type2->flags & NTLM_NEG_UNICODE)
565 CHECK(krb5_storage_read(in, type2->challange, sizeof(type2->challange)),
566 sizeof(type2->challange));
572 CHECK(krb5_ret_uint32(in, &type2->os[0]), 0);
573 CHECK(krb5_ret_uint32(in, &type2
602 heim_ntlm_encode_type2(const struct ntlm_type2 *type2, struct ntlm_buf *data) argument
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/
H A Dtest_ntlm.c58 struct ntlm_type2 type2; local
65 memset(&type2, 0, sizeof(type2));
106 ret = heim_ntlm_decode_type2(&data, &type2);
112 type3.flags = type2.flags;
114 type3.targetname = type2.targetname;
123 type2.challange,
185 struct ntlm_type2 type2; local
191 memset(&type2, 0, sizeof(type2));
[all...]
/freebsd-9.3-release/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-9.3-release/crypto/heimdal/lib/gssapi/ntlm/
H A Ddigest.c252 struct ntlm_type2 type2; local
257 memset(&type2, 0, sizeof(type2));
288 ret = krb5_ntlm_init_get_flags(c->context, c->ntlm, &type2.flags);
293 *ret_flags = type2.flags;
301 if (challange.length != sizeof(type2.challange)) {
305 memcpy(type2.challange, challange.data, sizeof(type2.challange));
309 &type2.targetname);
317 free(type2
[all...]
H A Dinit_sec_context.c316 struct ntlm_type2 type2; local
325 ret = heim_ntlm_decode_type2(&data, &type2);
332 ctx->flags = type2.flags;
334 /* XXX check that type2.targetinfo matches `target_name� */
340 type3.flags = type2.flags;
341 type3.targetname = type2.targetname;
348 if (1 || type2.targetinfo.length == 0) {
351 if (type2.flags & NTLM_NEG_NTLM2_SESSION) {
362 type2.challange,
369 type2
[all...]
/freebsd-9.3-release/crypto/heimdal/kuser/
H A Dkdigest.c415 struct ntlm_type2 type2; local
420 memset(&type2, 0, sizeof(type2));
444 if (challange.length != sizeof(type2.challange))
446 memcpy(type2.challange, challange.data, sizeof(type2.challange));
449 ret = krb5_ntlm_init_get_flags(context, ntlm, &type2.flags);
453 krb5_ntlm_init_get_targetname(context, ntlm, &type2.targetname);
454 type2.targetinfo.data = "\x00\x00";
455 type2
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dcall.c1536 tree type1, tree type2, tree *args, tree *argtypes,
1546 types[1] = type2;
1625 tree type2, tree *args, tree *argtypes, int flags)
1632 type2 = integer_type_node;
1722 && TYPE_PTR_TO_MEMBER_P (type2))
1725 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
1728 && (TYPE_PTRMEMFUNC_P (type2)
1729 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
1777 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
1779 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1535 build_builtin_candidate(struct z_candidate **candidates, tree fnname, tree type1, tree type2, tree *args, tree *argtypes, int flags) argument
1623 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
6148 tree type1, type2; local
[all...]
H A Dtypeck2.c163 tree type2 = (tree)val2;
165 return (pat1->type == type2);
162 tree type2 = (tree)val2; local
H A Dtypeck.c1111 at_least_as_qualified_p (tree type1, tree type2)
1114 int q2 = cp_type_quals (type2);
1124 comp_cv_qualification (tree type1, tree type2)
1127 int q2 = cp_type_quals (type2);
1145 comp_cv_qual_signature (tree type1, tree type2)
1147 if (comp_ptr_ttypes_real (type2, type1, -1))
1149 else if (comp_ptr_ttypes_real (type1, type2, -1))
1109 at_least_as_qualified_p(tree type1, tree type2) argument
1122 comp_cv_qualification(tree type1, tree type2) argument
1143 comp_cv_qual_signature(tree type1, tree type2) argument
/freebsd-9.3-release/sys/sys/
H A Dsdt.h132 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2)
133 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3)
134 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\
344 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \
348 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
351 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \
355 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
359 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, \
364 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
/freebsd-9.3-release/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 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
H A Dc-typeck.c773 comptypes (tree type1, tree type2)
778 val = comptypes_internal (type1, type2);
791 comptypes_internal (tree type1, tree type2)
794 tree t2 = type2;
3257 tree type2;
3277 type2 = TREE_TYPE (op2);
3278 code2 = TREE_CODE (type2);
3290 if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
3292 if (type1 == type2)
3302 result_type = c_common_type (type1, type2);
769 comptypes(tree type1, tree type2) argument
786 comptypes_internal(tree type1, tree type2) argument
3239 tree type2; local
[all...]
/freebsd-9.3-release/contrib/binutils/bfd/
H A Delf64-x86-64.c2570 unsigned int val, type, type2;
2580 type2 = bfd_get_8 (input_bfd, contents + roff - 2);
2581 BFD_ASSERT (type2 == 0x8d);
2857 unsigned int val, type, type2;
2867 type2 = bfd_get_8 (input_bfd, contents + roff - 2);
2868 BFD_ASSERT (type2 == 0x8d);
2568 unsigned int val, type, type2; local
2855 unsigned int val, type, type2; local
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_videodev2.h88 int type2; /* v4l2 */ member in struct:video_device
/freebsd-9.3-release/crypto/openssl/ssl/
H A Ds3_pkt.c858 void (*cb) (const SSL *ssl, int type2, int val) = NULL;
H A Dd1_pkt.c740 void (*cb) (const SSL *ssl, int type2, int val) = NULL;

Completed in 418 milliseconds

12