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

12

/freebsd-current/contrib/ncurses/form/
H A Dfld_ftlink.c42 | FIELDTYPE *type2)
53 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) argument
57 T((T_CALLED("link_fieldtype(%p,%p)"), (void *)type1, (void *)type2));
58 if (type1 && type2)
67 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS))
69 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE))
72 nftyp->right = type2;
74 type2->ref++;
/freebsd-current/crypto/openssl/include/openssl/
H A Dobjects.h84 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
86 static int nm##_cmp(type1 const *, type2 const *); \
87 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
89 # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
90 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
91 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
92 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
121 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, n
[all...]
/freebsd-current/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-current/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-current/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-current/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.c305 struct ntlm_type2 type2; local
314 ret = heim_ntlm_decode_type2(&data, &type2);
321 ctx->flags = type2.flags;
323 /* XXX check that type2.targetinfo matches `target_name�� */
329 type3.flags = type2.flags;
330 type3.targetname = type2.targetname;
337 if (1 || type2.targetinfo.length == 0) {
340 if (type2.flags & NTLM_NEG_NTLM2_SESSION) {
351 type2.challenge,
358 type2
[all...]
/freebsd-current/include/ssp/
H A Dstring.h84 #define __ssp_bos_icheck3_restrict(fun, type1, type2) \
85 static __inline type1 __ ## fun ## _ichk(type1 __restrict, type2 __restrict, size_t); \
87 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src, size_t len) { \
91 #define __ssp_bos_icheck3(fun, type1, type2) \
92 static __inline type1 __ ## fun ## _ichk(type1, type2, size_t); \
94 __ ## fun ## _ichk(type1 dst, type2 src, size_t len) { \
98 #define __ssp_bos_icheck2_restrict(fun, type1, type2) \
99 static __inline type1 __ ## fun ## _ichk(type1, type2); \
101 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src) { \
/freebsd-current/sys/contrib/openzfs/lib/libspl/
H A Datomic.c68 #define ATOMIC_ADD(name, type1, type2) \
69 void atomic_add_##name(volatile type1 *target, type2 bits) \
92 #define ATOMIC_SUB(name, type1, type2) \
93 void atomic_sub_##name(volatile type1 *target, type2 bits) \
192 #define ATOMIC_ADD_NV(name, type1, type2) \
193 type1 atomic_add_##name##_nv(volatile type1 *target, type2 bits) \
216 #define ATOMIC_SUB_NV(name, type1, type2) \
217 type1 atomic_sub_##name##_nv(volatile type1 *target, type2 bits) \
/freebsd-current/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-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_010_pos.ksh72 typeset type2=$5
74 make_object $objnum $mntpnt2 $type2
/freebsd-current/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-current/sys/sys/
H A Dsdt.h140 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2)
141 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3)
142 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\
381 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \
385 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
388 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \
392 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
396 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, \
401 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
/freebsd-current/contrib/llvm-project/lld/ELF/Arch/
H A DMips.cpp495 RelType type2 = (type >> 8) & 0xff; local
497 if (type2 == R_MIPS_NONE && type3 == R_MIPS_NONE)
499 if (type2 == R_MIPS_64 && type3 == R_MIPS_NONE)
500 return std::make_pair(type2, val);
501 if (type2 == R_MIPS_SUB && (type3 == R_MIPS_HI16 || type3 == R_MIPS_LO16))
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h988 // Set type1 = type2
989 void set_equivalent_type(kmp_hw_t type1, kmp_hw_t type2) { argument
991 KMP_DEBUG_ASSERT_VALID_HW_TYPE(type2);
992 kmp_hw_t real_type2 = equivalent[type2];
994 real_type2 = type2;
997 // be equivalent to type1. They all must be checked and reset to type2.
1087 kmp_hw_t type2 = ((const item_t *)i2)->type; local
1089 int level2 = __kmp_topology->get_level(type2);
H A Dkmp_affinity.cpp355 kmp_hw_t type2 = types[top_index2]; local
357 KMP_ASSERT_VALID_HW_TYPE(type2);
362 (type2 == KMP_HW_THREAD || type2 == KMP_HW_CORE ||
363 type2 == KMP_HW_SOCKET)) {
372 int pref2 = preference[type2];
389 remove_type = type2;
395 keep_type = type2;
/freebsd-current/contrib/ncurses/ncurses/
H A Dreport_offsets.c179 show_COLORS(TERMINAL, type2);
/freebsd-current/bin/sh/tests/builtins/
H A DMakefile175 ${PACKAGE}FILES+= type2.0
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dpkinit.c1210 heim_oid type2; local
1213 ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL);
1230 ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL);
1234 if (der_heim_oid_cmp(&type2, &asn1_oid_id_pkcs7_signedData)) {
1238 der_free_oid(&type2);
1242 der_free_oid(&type2);
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dlib_setup.c418 (termp)->type.Numbers[(&name - (termp)->type2.Numbers)]
/freebsd-current/contrib/elftoolchain/readelf/
H A Dreadelf.c3053 uint8_t type2, type3; local
3092 type2 = (type >> 8) & 0xFF;
3096 type2 = type3 = 0;
3108 type2));
3115 type2));
3136 uint8_t type2, type3; local
3177 type2 = (type >> 8) & 0xFF;
3181 type2 = type3 = 0;
3194 type2));
3201 type2));
[all...]
/freebsd-current/crypto/openssl/ssl/record/
H A Drec_layer_d1.c349 void (*cb) (const SSL *ssl, int type2, int val) = NULL;
H A Drec_layer_s3.c1278 void (*cb) (const SSL *ssl, int type2, int val) = NULL;
/freebsd-current/contrib/byacc/
H A Doutput.c70 p->name, p->type2,

Completed in 229 milliseconds

12