Home
last modified time | relevance | path

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

12

/freebsd-14.2/crypto/openssl/include/openssl/
H A Dobjects.h86 static int nm##_cmp(type1 const *, type2 const *); \
87 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
92 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
125 type2 const *b = b_; \
128 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
130 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
139 type2 const *b = b_; \
142 type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
144 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
150 ((type2 *)OBJ_bsearch_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \
[all …]
/freebsd-14.2/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()
90 type2.targetinfo.length = 0; in test_parse()
96 memset(&type2, 0, sizeof(type2)); in test_parse()
121 type2.challenge, in test_parse()
155 memset(&type2, 0, sizeof(type2)); in test_parse()
158 type2.flags = flags; in test_parse()
160 memset(type2.challenge, 0x7f, sizeof(type2.challenge)); in test_parse()
[all …]
H A Dntlm.c689 memset(type2, 0, sizeof(*type2)); 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()
726 heim_ntlm_free_type2(type2); in heim_ntlm_decode_type2()
755 if (type2->flags & NTLM_NEG_VERSION) in heim_ntlm_encode_type2()
758 if (type2->flags & NTLM_NEG_UNICODE) in heim_ntlm_encode_type2()
779 CHECK(krb5_storage_write(out, type2->challenge, sizeof(type2->challenge)), in heim_ntlm_encode_type2()
780 sizeof(type2->challenge)); in heim_ntlm_encode_type2()
791 type2->targetinfo.length), in heim_ntlm_encode_type2()
[all …]
/freebsd-14.2/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-14.2/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()
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()
234 type3.flags = type2.flags; in test_libntlm_v2()
247 type2.targetname, in test_libntlm_v2()
248 type2.challenge, in test_libntlm_v2()
[all …]
/freebsd-14.2/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-14.2/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()
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()
326 ret = heim_ntlm_encode_type2(&type2, &data); 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()
422 type2.challenge, in _gss_ntlm_init_sec_context()
[all …]
/freebsd-14.2/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-14.2/sys/contrib/openzfs/lib/libspl/
H A Datomic.c68 #define ATOMIC_ADD(name, type1, type2) \ argument
69 void atomic_add_##name(volatile type1 *target, type2 bits) \
92 #define ATOMIC_SUB(name, type1, type2) \ in ATOMIC_ADD() argument
93 void atomic_sub_##name(volatile type1 *target, type2 bits) \ in ATOMIC_ADD()
192 #define ATOMIC_ADD_NV(name, type1, type2) \ argument
193 type1 atomic_add_##name##_nv(volatile type1 *target, type2 bits) \
216 #define ATOMIC_SUB_NV(name, type1, type2) \ in ATOMIC_ADD_NV() argument
217 type1 atomic_sub_##name##_nv(volatile type1 *target, type2 bits) \ in ATOMIC_ADD_NV()
/freebsd-14.2/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()
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()
1571 type2.challenge, in kcm_op_do_ntlm()
1572 &type2.targetinfo, in kcm_op_do_ntlm()
[all …]
/freebsd-14.2/sys/sys/
H A Dsdt.h137 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) argument
138 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) argument
139 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\ argument
370 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \ argument
374 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
377 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \ argument
381 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
385 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, \ argument
390 SDT_PROBE_ARGTYPE(sdt, , , name, 2, #type2, NULL); \
/freebsd-14.2/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-14.2/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-14.2/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-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h989 void set_equivalent_type(kmp_hw_t type1, kmp_hw_t type2) { in set_equivalent_type() argument
991 KMP_DEBUG_ASSERT_VALID_HW_TYPE(type2); in set_equivalent_type()
992 kmp_hw_t real_type2 = equivalent[type2]; in set_equivalent_type()
994 real_type2 = type2; in set_equivalent_type()
1087 kmp_hw_t type2 = ((const item_t *)i2)->type; in hw_subset_compare() local
1089 int level2 = __kmp_topology->get_level(type2); in hw_subset_compare()
H A Dkmp_affinity.cpp355 kmp_hw_t type2 = types[top_index2]; in _remove_radix1_layers() local
357 KMP_ASSERT_VALID_HW_TYPE(type2); in _remove_radix1_layers()
362 (type2 == KMP_HW_THREAD || type2 == KMP_HW_CORE || in _remove_radix1_layers()
363 type2 == KMP_HW_SOCKET)) { in _remove_radix1_layers()
372 int pref2 = preference[type2]; in _remove_radix1_layers()
389 remove_type = type2; in _remove_radix1_layers()
395 keep_type = type2; in _remove_radix1_layers()
/freebsd-14.2/contrib/byacc/
H A Dreader.c1044 save_param(int k, char *buffer, int name, int type2) in save_param() argument
1051 p->type2 = strdup(buffer + type2); in save_param()
1052 NO_SPACE(p->type2); in save_param()
1053 buffer[type2] = '\0'; in save_param()
1054 (void)trim_blanks(p->type2); in save_param()
1094 int name, type2; in copy_param() local
1236 type2 = i--; in copy_param()
1240 type2 = i + 1; in copy_param()
1251 save_param(k, parms, name, type2); in copy_param()
3956 free(list->type2); in free_declarations()
H A Ddefs.h288 char *type2; /* everything after parameter name */ member
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/
H A DGenericOpcodes.td1141 let InOperandList = (ins ptype1:$base, type2:$offset, unknown:$am);
1149 let InOperandList = (ins ptype1:$base, type2:$offset, unknown:$am);
1157 let InOperandList = (ins ptype1:$base, type2:$offset, unknown:$am);
1183 let InOperandList = (ins type2:$addr, type0:$cmpval, type0:$newval);
1426 let InOperandList = (ins type0:$src, type1:$elt, type2:$idx);
1433 let InOperandList = (ins type1:$src, type2:$idx);
1459 let InOperandList = (ins type1:$acc, type2:$v);
1465 let InOperandList = (ins type1:$acc, type2:$v);
1506 …let InOperandList = (ins ptype0:$dst_addr, ptype1:$src_addr, type2:$size, untyped_imm_0:$tailcall);
1514 let InOperandList = (ins ptype0:$dst_addr, ptype1:$src_addr, type2:$size);
[all …]
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstructions.td3719 let InOperandList = (ins type1:$rsrc, type2:$vindex, type2:$voffset,
3720 type2:$soffset, untyped_imm_0:$offset,
3728 let InOperandList = (ins type1:$rsrc, type2:$vindex, type2:$voffset,
3748 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
3749 type2:$soffset, untyped_imm_0:$offset,
3757 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
3758 type2:$soffset, untyped_imm_0:$offset,
3829 let InOperandList = (ins type2:$arg0, type2:$arg1, type0:$arg2);
3854 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
3855 type2:$soffset, untyped_imm_0:$offset,
[all …]
/freebsd-14.2/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-14.2/bin/sh/tests/builtins/
H A DMakefile175 ${PACKAGE}FILES+= type2.0

12