Home
last modified time | relevance | path

Searched refs:type2 (Results 1 – 25 of 48) sorted by relevance

12

/freebsd/crypto/openssl/include/openssl/
H A Dobjects.h84 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
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) \ argument
90 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
91 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
92 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
121 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
125 type2 const *b = b_; \
128 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/freebsd/crypto/heimdal/lib/ntlm/
H A Dtest_ntlm.c52 struct ntlm_type2 type2; in test_parse() local
82 memset(&type2, 0, sizeof(type2)); in test_parse()
85 type2.flags = flags; in test_parse()
87 memset(type2.challenge, 0x7f, sizeof(type2.challenge)); in test_parse()
88 type2.targetname = rk_UNCONST(target); in test_parse()
89 type2.targetinfo.data = NULL; in test_parse()
90 type2.targetinfo.length = 0; in test_parse()
92 ret = heim_ntlm_encode_type2(&type2, &data); in test_parse()
96 memset(&type2, 0, sizeof(type2)); in test_parse()
98 ret = heim_ntlm_decode_type2(&data, &type2); in test_parse()
[all …]
H A Dntlm.c680 heim_ntlm_decode_type2(const struct ntlm_buf *buf, struct ntlm_type2 *type2) in heim_ntlm_decode_type2() argument
689 memset(type2, 0, sizeof(*type2)); in heim_ntlm_decode_type2()
704 CHECK(krb5_ret_uint32(in, &type2->flags), 0); in heim_ntlm_decode_type2()
705 if (type2->flags & NTLM_NEG_UNICODE) in heim_ntlm_decode_type2()
707 CHECK(krb5_storage_read(in, type2->challenge, sizeof(type2->challenge)), in heim_ntlm_decode_type2()
708 sizeof(type2->challenge)); in heim_ntlm_decode_type2()
713 if (type2->flags & NTLM_NEG_VERSION) { in heim_ntlm_decode_type2()
714 CHECK(krb5_ret_uint32(in, &type2->os[0]), 0); in heim_ntlm_decode_type2()
715 CHECK(krb5_ret_uint32(in, &type2->os[1]), 0); in heim_ntlm_decode_type2()
718 CHECK(ret_sec_string(in, ucs2, &targetname, &type2->targetname), 0); in heim_ntlm_decode_type2()
[all …]
/freebsd/crypto/heimdal/lib/gssapi/
H A Dtest_ntlm.c56 struct ntlm_type2 type2; in test_libntlm_v1() local
63 memset(&type2, 0, sizeof(type2)); in test_libntlm_v1()
104 ret = heim_ntlm_decode_type2(&data, &type2); in test_libntlm_v1()
110 type3.flags = type2.flags; in test_libntlm_v1()
112 type3.targetname = type2.targetname; in test_libntlm_v1()
121 type2.challenge, in test_libntlm_v1()
183 struct ntlm_type2 type2; in test_libntlm_v2() local
189 memset(&type2, 0, sizeof(type2)); in test_libntlm_v2()
230 ret = heim_ntlm_decode_type2(&data, &type2); in test_libntlm_v2()
234 type3.flags = type2.flags; in test_libntlm_v2()
[all …]
/freebsd/contrib/ncurses/form/
H A Dfld_ftlink.c53 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) in FORM_EXPORT()
57 T((T_CALLED("link_fieldtype(%p,%p)"), (void *)type1, (void *)type2)); in FORM_EXPORT()
58 if (type1 && type2) in FORM_EXPORT()
67 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS)) in FORM_EXPORT()
69 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE)) in FORM_EXPORT()
72 nftyp->right = type2; in FORM_EXPORT()
74 type2->ref++; in FORM_EXPORT()
/freebsd/contrib/elftoolchain/libelf/
H A Dgelf_mips64el.c51 uint8_t ssym, type3, type2, type; in _libelf_mips64el_r_info_tof() local
55 type2 = r_info >> 8; in _libelf_mips64el_r_info_tof()
60 new_info |= (Elf64_Xword)type2 << 48; in _libelf_mips64el_r_info_tof()
69 uint8_t ssym, type3, type2, type; in _libelf_mips64el_r_info_tom() local
73 type2 = r_info >> 48; in _libelf_mips64el_r_info_tom()
78 new_info |= (Elf64_Xword)type2 << 8; in _libelf_mips64el_r_info_tom()
/freebsd/crypto/heimdal/lib/gssapi/ntlm/
H A Dkdc.c253 struct ntlm_type2 type2; in kdc_type2() local
258 memset(&type2, 0, sizeof(type2)); in kdc_type2()
289 ret = krb5_ntlm_init_get_flags(c->context, c->ntlm, &type2.flags); in kdc_type2()
294 *ret_flags = type2.flags; in kdc_type2()
302 if (challange.length != sizeof(type2.challenge)) { in kdc_type2()
306 memcpy(type2.challenge, challange.data, sizeof(type2.challenge)); in kdc_type2()
310 &type2.targetname); in kdc_type2()
318 free(type2.targetname); in kdc_type2()
323 type2.targetinfo.data = ti.data; in kdc_type2()
324 type2.targetinfo.length = ti.length; in kdc_type2()
[all …]
H A Dinit_sec_context.c305 struct ntlm_type2 type2; in _gss_ntlm_init_sec_context() local
314 ret = heim_ntlm_decode_type2(&data, &type2); in _gss_ntlm_init_sec_context()
321 ctx->flags = type2.flags; in _gss_ntlm_init_sec_context()
329 type3.flags = type2.flags; in _gss_ntlm_init_sec_context()
330 type3.targetname = type2.targetname; in _gss_ntlm_init_sec_context()
337 if (1 || type2.targetinfo.length == 0) { in _gss_ntlm_init_sec_context()
340 if (type2.flags & NTLM_NEG_NTLM2_SESSION) { in _gss_ntlm_init_sec_context()
351 type2.challenge, in _gss_ntlm_init_sec_context()
358 type2.challenge, in _gss_ntlm_init_sec_context()
403 ret = heim_ntlm_decode_targetinfo(&type2.targetinfo, 1, &ti); in _gss_ntlm_init_sec_context()
[all …]
/freebsd/include/ssp/
H A Dstring.h86 #define __ssp_bos_icheck3_restrict(fun, type1, type2) \ argument
87 static __inline type1 __ ## fun ## _ichk(type1 __restrict, type2 __restrict, size_t); \
89 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src, size_t len) { \
93 #define __ssp_bos_icheck3(fun, type1, type2) \ argument
94 static __inline type1 __ ## fun ## _ichk(type1, type2, size_t); \
96 __ ## fun ## _ichk(type1 dst, type2 src, size_t len) { \
100 #define __ssp_bos_icheck2_restrict(fun, type1, type2) \ argument
101 static __inline type1 __ ## fun ## _ichk(type1, type2); \
103 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src) { \
/freebsd/crypto/heimdal/kuser/
H A Dkdigest.c435 struct ntlm_type2 type2; in ntlm_server_init() local
441 memset(&type2, 0, sizeof(type2)); in ntlm_server_init()
465 if (challenge.length != sizeof(type2.challenge)) in ntlm_server_init()
467 memcpy(type2.challenge, challenge.data, sizeof(type2.challenge)); in ntlm_server_init()
470 ret = krb5_ntlm_init_get_flags(context, ntlm, &type2.flags); in ntlm_server_init()
474 krb5_ntlm_init_get_targetname(context, ntlm, &type2.targetname); in ntlm_server_init()
475 type2.targetinfo.data = zero2; in ntlm_server_init()
476 type2.targetinfo.length = 2; in ntlm_server_init()
478 ret = heim_ntlm_encode_type2(&type2, &data); in ntlm_server_init()
482 free(type2.targetname); in ntlm_server_init()
/freebsd/sys/contrib/openzfs/lib/libspl/
H A Datomic.c64 #define ATOMIC_ADD(name, type1, type2) \ argument
65 void atomic_add_##name(volatile type1 *target, type2 bits) \
86 #define ATOMIC_SUB(name, type1, type2) \ in ATOMIC_ADD() argument
87 void atomic_sub_##name(volatile type1 *target, type2 bits) \ in ATOMIC_ADD()
176 #define ATOMIC_ADD_NV(name, type1, type2) \ argument
177 type1 atomic_add_##name##_nv(volatile type1 *target, type2 bits) \
198 #define ATOMIC_SUB_NV(name, type1, type2) \ in ATOMIC_ADD_NV() argument
199 type1 atomic_sub_##name##_nv(volatile type1 *target, type2 bits) \ in ATOMIC_ADD_NV()
/freebsd/sys/sys/
H A Dsdt.h133 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) argument
134 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) argument
135 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\ argument
388 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \ argument
392 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
395 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \ argument
399 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
403 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, \ argument
408 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
/freebsd/crypto/heimdal/kcm/
H A Dprotocol.c1439 struct ntlm_type2 type2; in kcm_op_do_ntlm() local
1447 memset(&type2, 0, sizeof(type2)); in kcm_op_do_ntlm()
1478 ret = heim_ntlm_decode_type2(&ndata, &type2); in kcm_op_do_ntlm()
1483 if (domain && strcmp(domain, type2.targetname) == 0) { in kcm_op_do_ntlm()
1489 type3.flags = type2.flags; in kcm_op_do_ntlm()
1490 type3.targetname = type2.targetname; in kcm_op_do_ntlm()
1497 if (1 || type2.targetinfo.length == 0) { in kcm_op_do_ntlm()
1500 if (type2.flags & NTLM_NEG_NTLM2_SESSION) { in kcm_op_do_ntlm()
1509 type2.challenge, in kcm_op_do_ntlm()
1516 type2.challenge, in kcm_op_do_ntlm()
[all …]
/freebsd/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/contrib/llvm-project/lld/ELF/Arch/
H A DMips.cpp495 RelType type2 = (type >> 8) & 0xff; in calculateMipsRelChain() local
497 if (type2 == R_MIPS_NONE && type3 == R_MIPS_NONE) in calculateMipsRelChain()
499 if (type2 == R_MIPS_64 && type3 == R_MIPS_NONE) in calculateMipsRelChain()
500 return std::make_pair(type2, val); in calculateMipsRelChain()
501 if (type2 == R_MIPS_SUB && (type3 == R_MIPS_HI16 || type3 == R_MIPS_LO16)) in calculateMipsRelChain()
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-storeutl.pod.in89 The arg must be formatted as C</type0=value0/type1=value1/type2=...>.
108 The issuer arg must be formatted as C</type0=value0/type1=value1/type2=...>,
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h996 void set_equivalent_type(kmp_hw_t type1, kmp_hw_t type2) { in set_equivalent_type() argument
998 KMP_DEBUG_ASSERT_VALID_HW_TYPE(type2); in set_equivalent_type()
999 kmp_hw_t real_type2 = equivalent[type2]; in set_equivalent_type()
1001 real_type2 = type2; in set_equivalent_type()
1094 kmp_hw_t type2 = ((const item_t *)i2)->type; in hw_subset_compare() local
1096 int level2 = __kmp_topology->get_level(type2); in hw_subset_compare()
/freebsd/contrib/byacc/
H A Dreader.c1182 save_param(int k, char *buffer, int name, int type2) in save_param() argument
1189 p->type2 = strdup(buffer + type2); in save_param()
1190 NO_SPACE(p->type2); in save_param()
1191 buffer[type2] = '\0'; in save_param()
1192 (void)trim_blanks(p->type2); in save_param()
1250 int name, type2; in copy_param() local
1392 type2 = i--; in copy_param()
1396 type2 = i + 1; in copy_param()
1407 save_param(k, parms, name, type2); in copy_param()
4181 free(list->type2); in free_declarations()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrGISel.td57 let InOperandList = (ins type0:$passthru, type1:$hi, type1:$lo, type2:$vl);
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DGenericOpcodes.td1229 let InOperandList = (ins ptype1:$base, type2:$offset, unknown:$am);
1237 let InOperandList = (ins ptype1:$base, type2:$offset, unknown:$am);
1245 let InOperandList = (ins ptype1:$base, type2:$offset, unknown:$am);
1271 let InOperandList = (ins type2:$addr, type0:$cmpval, type0:$newval);
1537 let InOperandList = (ins type0:$src, type1:$elt, type2:$idx);
1544 let InOperandList = (ins type1:$src, type2:$idx);
1584 let InOperandList = (ins type1:$acc, type2:$v);
1590 let InOperandList = (ins type1:$acc, type2:$v);
1631 …let InOperandList = (ins ptype0:$dst_addr, ptype1:$src_addr, type2:$size, untyped_imm_0:$tailcall);
1639 let InOperandList = (ins ptype0:$dst_addr, ptype1:$src_addr, type2:$size);
[all …]
/freebsd/contrib/ncurses/ncurses/
H A Dterm.priv.h150 TERMTYPE2 type2; /* extended terminal type description */ member
H A Dreport_offsets.c199 show_COLORS(TERMINAL, type2); in main()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstructions.td3734 let InOperandList = (ins type1:$rsrc, type2:$vindex, type2:$voffset,
3735 type2:$soffset, untyped_imm_0:$offset,
3743 let InOperandList = (ins type1:$rsrc, type2:$vindex, type2:$voffset,
3744 type2:$soffset, untyped_imm_0:$offset, untyped_imm_0:$format,
3768 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
3769 type2:$soffset, untyped_imm_0:$offset,
3777 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
3778 type2:$soffset, untyped_imm_0:$offset,
3849 let InOperandList = (ins type2:$arg0, type2:$arg1, type0:$arg2);
3869 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
[all …]
/freebsd/crypto/heimdal/lib/krb5/
H A Dpkinit.c1210 heim_oid type2; in pk_rd_pa_reply_enckey() local
1213 ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL); in pk_rd_pa_reply_enckey()
1230 ret = hx509_cms_unwrap_ContentInfo(&content, &type2, &out, NULL); in pk_rd_pa_reply_enckey()
1234 if (der_heim_oid_cmp(&type2, &asn1_oid_id_pkcs7_signedData)) { in pk_rd_pa_reply_enckey()
1238 der_free_oid(&type2); in pk_rd_pa_reply_enckey()
1242 der_free_oid(&type2); in pk_rd_pa_reply_enckey()
/freebsd/bin/sh/tests/builtins/
H A DMakefile174 ${PACKAGE}FILES+= type2.0

12