Symbol: type1
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
110
struct ntlm_type1 type1;
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
130
ret = heim_ntlm_decode_type1(&data, &type1);
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
137
if ((type1.flags & NTLM_NEG_UNICODE) == 0) {
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
138
heim_ntlm_free_type1(&type1);
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
144
if (type1.flags & NTLM_NEG_SIGN)
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
146
if (type1.flags & NTLM_NEG_SIGN)
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
151
type1.flags,
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
152
type1.hostname,
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
153
type1.domain,
crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c
156
heim_ntlm_free_type1(&type1);
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
248
struct ntlm_type1 type1;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
284
memset(&type1, 0, sizeof(type1));
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
286
type1.flags = flags;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
287
type1.domain = name->domain;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
288
type1.hostname = NULL;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
289
type1.os[0] = 0;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
290
type1.os[1] = 0;
crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c
292
ret = heim_ntlm_encode_type1(&type1, &data);
crypto/heimdal/lib/gssapi/test_ntlm.c
182
struct ntlm_type1 type1;
crypto/heimdal/lib/gssapi/test_ntlm.c
188
memset(&type1, 0, sizeof(type1));
crypto/heimdal/lib/gssapi/test_ntlm.c
192
type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_NTLM|flags;
crypto/heimdal/lib/gssapi/test_ntlm.c
193
type1.domain = strdup(domain);
crypto/heimdal/lib/gssapi/test_ntlm.c
194
type1.hostname = NULL;
crypto/heimdal/lib/gssapi/test_ntlm.c
195
type1.os[0] = 0;
crypto/heimdal/lib/gssapi/test_ntlm.c
196
type1.os[1] = 0;
crypto/heimdal/lib/gssapi/test_ntlm.c
198
ret = heim_ntlm_encode_type1(&type1, &data);
crypto/heimdal/lib/gssapi/test_ntlm.c
55
struct ntlm_type1 type1;
crypto/heimdal/lib/gssapi/test_ntlm.c
62
memset(&type1, 0, sizeof(type1));
crypto/heimdal/lib/gssapi/test_ntlm.c
66
type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM|flags;
crypto/heimdal/lib/gssapi/test_ntlm.c
67
type1.domain = strdup(domain);
crypto/heimdal/lib/gssapi/test_ntlm.c
68
type1.hostname = NULL;
crypto/heimdal/lib/gssapi/test_ntlm.c
69
type1.os[0] = 0;
crypto/heimdal/lib/gssapi/test_ntlm.c
70
type1.os[1] = 0;
crypto/heimdal/lib/gssapi/test_ntlm.c
72
ret = heim_ntlm_encode_type1(&type1, &data);
crypto/heimdal/lib/ntlm/ntlm.c
590
heim_ntlm_encode_type1(const struct ntlm_type1 *type1, struct ntlm_buf *data)
crypto/heimdal/lib/ntlm/ntlm.c
597
flags = type1->flags;
crypto/heimdal/lib/ntlm/ntlm.c
600
if (type1->domain) {
crypto/heimdal/lib/ntlm/ntlm.c
604
if (type1->hostname) {
crypto/heimdal/lib/ntlm/ntlm.c
608
if (type1->os[0])
crypto/heimdal/lib/ntlm/ntlm.c
612
if (type1->domain) {
crypto/heimdal/lib/ntlm/ntlm.c
613
domain.length = len_string(0, type1->domain);
crypto/heimdal/lib/ntlm/ntlm.c
621
if (type1->hostname) {
crypto/heimdal/lib/ntlm/ntlm.c
622
hostname.length = len_string(0, type1->hostname);
crypto/heimdal/lib/ntlm/ntlm.c
642
CHECK(krb5_store_uint32(out, type1->os[0]), 0);
crypto/heimdal/lib/ntlm/ntlm.c
643
CHECK(krb5_store_uint32(out, type1->os[1]), 0);
crypto/heimdal/lib/ntlm/ntlm.c
645
if (type1->domain)
crypto/heimdal/lib/ntlm/ntlm.c
646
CHECK(put_string(out, 0, type1->domain), 0);
crypto/heimdal/lib/ntlm/ntlm.c
647
if (type1->hostname)
crypto/heimdal/lib/ntlm/ntlm.c
648
CHECK(put_string(out, 0, type1->hostname), 0);
crypto/heimdal/lib/ntlm/test_ntlm.c
51
struct ntlm_type1 type1;
crypto/heimdal/lib/ntlm/test_ntlm.c
57
memset(&type1, 0, sizeof(type1));
crypto/heimdal/lib/ntlm/test_ntlm.c
59
type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM;
crypto/heimdal/lib/ntlm/test_ntlm.c
60
type1.domain = rk_UNCONST(domain);
crypto/heimdal/lib/ntlm/test_ntlm.c
61
type1.hostname = NULL;
crypto/heimdal/lib/ntlm/test_ntlm.c
62
type1.os[0] = 0;
crypto/heimdal/lib/ntlm/test_ntlm.c
63
type1.os[1] = 0;
crypto/heimdal/lib/ntlm/test_ntlm.c
65
ret = heim_ntlm_encode_type1(&type1, &data);
crypto/heimdal/lib/ntlm/test_ntlm.c
69
memset(&type1, 0, sizeof(type1));
crypto/heimdal/lib/ntlm/test_ntlm.c
71
ret = heim_ntlm_decode_type1(&data, &type1);
crypto/heimdal/lib/ntlm/test_ntlm.c
76
heim_ntlm_free_type1(&type1);
crypto/openssl/include/openssl/objects.h
120
#define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \
crypto/openssl/include/openssl/objects.h
123
type1 const *a = a_; \
crypto/openssl/include/openssl/objects.h
127
static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
crypto/openssl/include/openssl/objects.h
134
#define IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
crypto/openssl/include/openssl/objects.h
137
type1 const *a = a_; \
crypto/openssl/include/openssl/objects.h
141
type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
crypto/openssl/include/openssl/objects.h
148
#define OBJ_bsearch(type1, key, type2, base, num, cmp) \
crypto/openssl/include/openssl/objects.h
149
((type2 *)OBJ_bsearch_(CHECKED_PTR_OF(type1, key), CHECKED_PTR_OF(type2, base), \
crypto/openssl/include/openssl/objects.h
151
((void)CHECKED_PTR_OF(type1, cmp##_type_1), \
crypto/openssl/include/openssl/objects.h
155
#define OBJ_bsearch_ex(type1, key, type2, base, num, cmp, flags) \
crypto/openssl/include/openssl/objects.h
156
((type2 *)OBJ_bsearch_ex_(CHECKED_PTR_OF(type1, key), CHECKED_PTR_OF(type2, base), \
crypto/openssl/include/openssl/objects.h
158
((void)CHECKED_PTR_OF(type1, cmp##_type_1), \
crypto/openssl/include/openssl/objects.h
83
#define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
crypto/openssl/include/openssl/objects.h
85
static int nm##_cmp(type1 const *, type2 const *); \
crypto/openssl/include/openssl/objects.h
86
scope type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
crypto/openssl/include/openssl/objects.h
88
#define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
crypto/openssl/include/openssl/objects.h
89
_DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
crypto/openssl/include/openssl/objects.h
90
#define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
crypto/openssl/include/openssl/objects.h
91
type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
include/ssp/string.h
100
#define __ssp_bos_icheck2_restrict(fun, type1, type2) \
include/ssp/string.h
101
static __inline type1 __ ## fun ## _ichk(type1, type2); \
include/ssp/string.h
102
static __inline __attribute__((__always_inline__)) type1 \
include/ssp/string.h
103
__ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src) { \
include/ssp/string.h
86
#define __ssp_bos_icheck3_restrict(fun, type1, type2) \
include/ssp/string.h
87
static __inline type1 __ ## fun ## _ichk(type1 __restrict, type2 __restrict, size_t); \
include/ssp/string.h
88
static __inline __attribute__((__always_inline__)) type1 \
include/ssp/string.h
89
__ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src, size_t len) { \
include/ssp/string.h
93
#define __ssp_bos_icheck3(fun, type1, type2) \
include/ssp/string.h
94
static __inline type1 __ ## fun ## _ichk(type1, type2, size_t); \
include/ssp/string.h
95
static __inline __attribute__((__always_inline__)) type1 \
include/ssp/string.h
96
__ ## fun ## _ichk(type1 dst, type2 src, size_t len) { \
sys/amd64/vmm/vmm.c
1347
int type1, vector1;
sys/amd64/vmm/vmm.c
1356
type1 = info1 & VM_INTINFO_TYPE;
sys/amd64/vmm/vmm.c
1358
if (type1 == VM_INTINFO_HWEXCEPTION && vector1 == IDT_DF) {
sys/dev/mrsas/mrsas.h
3054
} type1;
sys/sys/sdt.h
132
#define DTRACE_PROBE2(name, type0, arg0, type1, arg1)
sys/sys/sdt.h
133
#define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2)
sys/sys/sdt.h
134
#define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3)
sys/sys/sdt.h
135
#define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\
sys/sys/sdt.h
393
#define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \
sys/sys/sdt.h
396
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
sys/sys/sdt.h
399
#define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \
sys/sys/sdt.h
402
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
sys/sys/sdt.h
406
#define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \
sys/sys/sdt.h
409
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
sys/sys/sdt.h
414
#define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, \
sys/sys/sdt.h
418
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
usr.bin/mail/cmd1.c
245
return (type1(msgvec, 1, 1));
usr.bin/mail/cmd1.c
256
return (type1(msgvec, 0, 1));
usr.bin/mail/cmd1.c
267
return (type1(msgvec, 1, 0));
usr.bin/mail/cmd1.c
278
return (type1(msgvec, 0, 0));
usr.bin/mail/extern.h
234
int type1(int *, int, int);
usr.sbin/bhyve/smbiostbl.c
658
struct smbios_table_type1 *type1;
usr.sbin/bhyve/smbiostbl.c
663
type1 = (struct smbios_table_type1 *)curaddr;
usr.sbin/bhyve/smbiostbl.c
676
uuid_enc_le(&type1->uuid, &uuid);
usr.sbin/bhyve/smbiostbl.c
705
memcpy(&type1->uuid, digest, sizeof (digest));