/netbsd-src/crypto/external/bsd/heimdal/dist/lib/ntlm/ |
H A D | test_ntlm.c | 58 struct ntlm_type3 type3; in test_parse() local 126 memset(&type3, 0, sizeof(type3)); in test_parse() 128 type3.flags = flags; in test_parse() 129 type3.username = rk_UNCONST(user); in test_parse() 130 type3.targetname = rk_UNCONST(target); in test_parse() 131 type3.ws = rk_UNCONST("workstation"); in test_parse() 139 &type3.ntlm); in test_parse() 143 ret = heim_ntlm_encode_type3(&type3, &data, NULL); in test_parse() 147 free(type3.ntlm.data); in test_parse() 149 memset(&type3, 0, sizeof(type3)); in test_parse() [all …]
|
H A D | ntlm.c | 986 struct ntlm_type3 *type3) in heim_ntlm_decode_type3() argument 995 memset(type3, 0, sizeof(*type3)); in heim_ntlm_decode_type3() 1026 CHECK(krb5_ret_uint32(in, &type3->flags), 0); in heim_ntlm_decode_type3() 1029 CHECK(krb5_ret_uint32(in, &type3->os[0]), 0); in heim_ntlm_decode_type3() 1030 CHECK(krb5_ret_uint32(in, &type3->os[1]), 0); in heim_ntlm_decode_type3() 1033 type3->mic_offset = 52 + SIZE_SEC_BUFFER + 4 + SIZE_OS_VERSION; in heim_ntlm_decode_type3() 1034 CHECK_SIZE(krb5_storage_read(in, type3->mic, sizeof(type3->mic)), sizeof(type3->mic)); in heim_ntlm_decode_type3() 1036 type3->mic_offset = 0; in heim_ntlm_decode_type3() 1037 CHECK(ret_buf(in, &lm, &type3->lm), 0); in heim_ntlm_decode_type3() 1038 CHECK(ret_buf(in, &ntlm, &type3->ntlm), 0); in heim_ntlm_decode_type3() [all …]
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/gssapi/ |
H A D | test_ntlm.c | 59 struct ntlm_type3 type3; in test_libntlm_v1() local 66 memset(&type3, 0, sizeof(type3)); in test_libntlm_v1() 112 type3.flags = type2.flags; in test_libntlm_v1() 113 type3.username = rk_UNCONST(user); in test_libntlm_v1() 114 type3.targetname = type2.targetname; in test_libntlm_v1() 115 type3.ws = rk_UNCONST("workstation"); in test_libntlm_v1() 124 &type3.ntlm); in test_libntlm_v1() 130 &type3.sessionkey); in test_libntlm_v1() 136 ret = heim_ntlm_encode_type3(&type3, &data, NULL); in test_libntlm_v1() 186 struct ntlm_type3 type3; in test_libntlm_v2() local [all …]
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/ |
H A D | init_sec_context.c | 343 struct ntlm_type3 type3; in _gss_ntlm_init_sec_context() local 363 memset(&type3, 0, sizeof(type3)); in _gss_ntlm_init_sec_context() 365 type3.username = ctx->client->username; in _gss_ntlm_init_sec_context() 366 type3.flags = type2.flags; in _gss_ntlm_init_sec_context() 367 type3.targetname = type2.targetname; in _gss_ntlm_init_sec_context() 368 type3.ws = rk_UNCONST("workstation"); in _gss_ntlm_init_sec_context() 390 &type3.lm, in _gss_ntlm_init_sec_context() 391 &type3.ntlm); in _gss_ntlm_init_sec_context() 396 &type3.ntlm); in _gss_ntlm_init_sec_context() 408 &type3.sessionkey); in _gss_ntlm_init_sec_context() [all …]
|
H A D | kdc.c | 349 const struct ntlm_type3 *type3, in kdc_type3() argument 358 ret = krb5_ntlm_req_set_flags(c->context, c->ntlm, type3->flags); in kdc_type3() 360 ret = krb5_ntlm_req_set_username(c->context, c->ntlm, type3->username); in kdc_type3() 363 type3->targetname); in kdc_type3() 366 type3->lm.data, type3->lm.length); in kdc_type3() 369 type3->ntlm.data, type3->ntlm.length); in kdc_type3() 374 if (type3->sessionkey.length) { in kdc_type3() 376 type3->sessionkey.data, in kdc_type3() 377 type3->sessionkey.length); in kdc_type3() 396 if (type3->sessionkey.length) { in kdc_type3()
|
H A D | accept_sec_context.c | 180 struct ntlm_type3 type3; in _gss_ntlm_accept_sec_context() local 188 ret = heim_ntlm_decode_type3(&data, 1, &type3); in _gss_ntlm_accept_sec_context() 197 &type3, in _gss_ntlm_accept_sec_context() 200 heim_ntlm_free_type3(&type3); in _gss_ntlm_accept_sec_context() 208 n->user = strdup(type3.username); in _gss_ntlm_accept_sec_context() 209 n->domain = strdup(type3.targetname); in _gss_ntlm_accept_sec_context() 214 heim_ntlm_free_type3(&type3); in _gss_ntlm_accept_sec_context() 222 heim_ntlm_free_type3(&type3); in _gss_ntlm_accept_sec_context()
|
/netbsd-src/crypto/external/bsd/heimdal/dist/kcm/ |
H A D | protocol.c | 1446 struct ntlm_type3 type3; in kcm_op_do_ntlm() local 1454 memset(&type3, 0, sizeof(type3)); in kcm_op_do_ntlm() 1494 type3.username = c->user; in kcm_op_do_ntlm() 1495 type3.flags = type2.flags; in kcm_op_do_ntlm() 1496 type3.targetname = type2.targetname; in kcm_op_do_ntlm() 1497 type3.ws = rk_UNCONST("workstation"); in kcm_op_do_ntlm() 1517 &type3.lm, in kcm_op_do_ntlm() 1518 &type3.ntlm); in kcm_op_do_ntlm() 1523 &type3.ntlm); in kcm_op_do_ntlm() 1532 &type3.sessionkey); in kcm_op_do_ntlm() [all …]
|
/netbsd-src/sys/sys/ |
H A D | sdt.h | 189 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, \ argument 195 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, \ argument 427 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, \ argument 433 SDT_PROBE_ARGTYPE(sdt, , , name, 3, #type3, NULL); \ 436 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, \ argument 442 SDT_PROBE_ARGTYPE(sdt, , , name, 3, #type3, NULL); \
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
H A D | intrinsic.c | 674 const char *a3, bt type3, int kind3, int optional3) in add_sym_3() argument 687 a3, type3, kind3, optional3, INTENT_IN, in add_sym_3() 705 const char *a3, bt type3, int kind3, int optional3, in add_sym_5ml() argument 720 a3, type3, kind3, optional3, INTENT_IN, in add_sym_5ml() 738 const char *a3, bt type3, int kind3, int optional3, in add_sym_6fl() argument 755 a3, type3, kind3, optional3, INTENT_IN, in add_sym_6fl() 774 const char *a3, bt type3, int kind3, int optional3) in add_sym_3red() argument 787 a3, type3, kind3, optional3, INTENT_IN, in add_sym_3red() 803 int optional2, sym_intent intent2, const char *a3, bt type3, in add_sym_3s() argument 817 a3, type3, kind3, optional3, intent3, in add_sym_3s() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
H A D | intrinsic.cc | 733 const char *a3, bt type3, int kind3, int optional3) in add_sym_3() argument 746 a3, type3, kind3, optional3, INTENT_IN, in add_sym_3() 764 const char *a3, bt type3, int kind3, int optional3, in add_sym_5ml() argument 779 a3, type3, kind3, optional3, INTENT_IN, in add_sym_5ml() 797 const char *a3, bt type3, int kind3, int optional3, in add_sym_6fl() argument 814 a3, type3, kind3, optional3, INTENT_IN, in add_sym_6fl() 833 const char *a3, bt type3, int kind3, int optional3) in add_sym_3red() argument 846 a3, type3, kind3, optional3, INTENT_IN, in add_sym_3red() 862 int optional2, sym_intent intent2, const char *a3, bt type3, in add_sym_3s() argument 876 a3, type3, kind3, optional3, intent3, in add_sym_3s() [all …]
|
/netbsd-src/external/bsd/unbound/dist/testdata/ |
H A D | test_ldnsrr.c3 | 882 type29.types-signed.wb.sidnlabs.nl. 3600 IN NSEC type3.types-signed.wb.sidnlabs.nl. LOC RRSIG NSEC 886 type3.types-signed.wb.sidnlabs.nl. 60 IN MD maildestination.types-signed.wb.sidnlabs.nl. 888 type3.types-signed.wb.sidnlabs.nl. 60 IN RRSIG MD 8 5 60 20140201000000 20130930114324 62298 types-… 890 type3.types-signed.wb.sidnlabs.nl. 3600 IN NSEC type33.types-signed.wb.sidnlabs.nl. MD RRSIG NSEC 892 type3.types-signed.wb.sidnlabs.nl. 3600 IN RRSIG NSEC 8 5 3600 20140201000000 20130930114324 62298 …
|
H A D | test_ldnsrr.3 | 471 type29.types-signed.wb.sidnlabs.nl. 3600 IN NSEC type3.types-signed.wb.sidnlabs.nl. LOC RRSIG NSEC 473 type3.types-signed.wb.sidnlabs.nl. 60 IN MD maildestination.types-signed.wb.sidnlabs.nl. 474 type3.types-signed.wb.sidnlabs.nl. 60 IN RRSIG MD 8 5 60 20140201000000 20130930114324 62298 types-… 475 type3.types-signed.wb.sidnlabs.nl. 3600 IN NSEC type33.types-signed.wb.sidnlabs.nl. MD RRSIG NSEC 476 type3.types-signed.wb.sidnlabs.nl. 3600 IN RRSIG NSEC 8 5 3600 20140201000000 20130930114324 62298 …
|
/netbsd-src/external/gpl2/groff/dist/tmac/ |
H A D | hyphen.us | 4015 type3
|
/netbsd-src/external/apache2/llvm/dist/clang/docs/ |
H A D | LanguageExtensions.rst | 2441 bool __builtin_add_overflow (type1 x, type2 y, type3 *sum); 2442 bool __builtin_sub_overflow (type1 x, type2 y, type3 *diff); 2443 bool __builtin_mul_overflow (type1 x, type2 y, type3 *prod);
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/ |
H A D | Target.td | 900 def type3 : TypedOperand<"OPERAND_GENERIC_3">;
|
/netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
H A D | readelf.c | 2122 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf); in dump_relocations() local 2124 const char * rtype3 = elf_mips_reloc_type (type3); in dump_relocations() 2138 (unsigned long) type3 & 0xffffffff); in dump_relocations()
|
/netbsd-src/external/gpl3/binutils/dist/binutils/ |
H A D | readelf.c | 2189 uint64_t type3 = ELF64_MIPS_R_TYPE3 (inf); in dump_relocations() local 2191 const char * rtype3 = elf_mips_reloc_type (type3); in dump_relocations() 2205 (unsigned long) type3 & 0xffffffff); in dump_relocations()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
H A D | extend.texi | 12662 …fn {Built-in Function} bool __builtin_add_overflow (@var{type1} a, @var{type2} b, @var{type3} *res) 12688 …fn {Built-in Function} bool __builtin_sub_overflow (@var{type1} a, @var{type2} b, @var{type3} *res) 12702 …fn {Built-in Function} bool __builtin_mul_overflow (@var{type1} a, @var{type2} b, @var{type3} *res) 12718 …efn {Built-in Function} bool __builtin_add_overflow_p (@var{type1} a, @var{type2} b, @var{type3} c) 12719 …fnx {Built-in Function} bool __builtin_sub_overflow_p (@var{type1} a, @var{type2} b, @var{type3} c) 12720 …fnx {Built-in Function} bool __builtin_mul_overflow_p (@var{type1} a, @var{type2} b, @var{type3} c)
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
H A D | extend.texi | 11899 …fn {Built-in Function} bool __builtin_add_overflow (@var{type1} a, @var{type2} b, @var{type3} *res) 11925 …fn {Built-in Function} bool __builtin_sub_overflow (@var{type1} a, @var{type2} b, @var{type3} *res) 11939 …fn {Built-in Function} bool __builtin_mul_overflow (@var{type1} a, @var{type2} b, @var{type3} *res) 11955 …efn {Built-in Function} bool __builtin_add_overflow_p (@var{type1} a, @var{type2} b, @var{type3} c) 11956 …fnx {Built-in Function} bool __builtin_sub_overflow_p (@var{type1} a, @var{type2} b, @var{type3} c) 11957 …fnx {Built-in Function} bool __builtin_mul_overflow_p (@var{type1} a, @var{type2} b, @var{type3} c)
|
/netbsd-src/external/gpl3/gdb.old/dist/bfd/ |
H A D | ChangeLog-0203 | 6564 * elf64-mips.c (mips_elf64_be_swap_reloca_out): Handle type2 and type3.
|
/netbsd-src/external/gpl3/binutils/dist/bfd/ |
H A D | ChangeLog-0203 | 6564 * elf64-mips.c (mips_elf64_be_swap_reloca_out): Handle type2 and type3.
|
/netbsd-src/external/gpl3/gdb/dist/bfd/ |
H A D | ChangeLog-0203 | 6564 * elf64-mips.c (mips_elf64_be_swap_reloca_out): Handle type2 and type3.
|
/netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
H A D | ChangeLog-0203 | 6564 * elf64-mips.c (mips_elf64_be_swap_reloca_out): Handle type2 and type3.
|
/netbsd-src/sys/external/bsd/acpica/dist/ |
H A D | changes.txt | 14253 a type3 opcode and this will require an update to the ACPI specification.
|
/netbsd-src/external/gpl3/gcc/dist/ |
H A D | MD5SUMS | 16290 a07bd6eee0bbce4f76caa1372e66c614 gcc/testsuite/g++.dg/cpp1z/noexcept-type3.C 23297 36603b3c2926b20a0727d10d5f631e75 gcc/testsuite/g++.dg/parse/ret-type3.C 35460 1566816b16d321a8375c1a99ca768245 gcc/testsuite/gcc.dg/Wreturn-type3.c
|