Home
last modified time | relevance | path

Searched refs:type1 (Results 1 – 25 of 35) sorted by relevance

12

/freebsd-13.1/crypto/openssl/include/openssl/
H A Dobjects.h76 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
78 static int nm##_cmp(type1 const *, type2 const *); \
81 # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ argument
82 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
83 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
84 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
113 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
116 type1 const *a = a_; \
127 # define IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
130 type1 const *a = a_; \
[all …]
/freebsd-13.1/crypto/heimdal/lib/gssapi/
H A Dtest_ntlm.c55 struct ntlm_type1 type1; in test_libntlm_v1() local
62 memset(&type1, 0, sizeof(type1)); in test_libntlm_v1()
67 type1.domain = strdup(domain); in test_libntlm_v1()
68 type1.hostname = NULL; in test_libntlm_v1()
69 type1.os[0] = 0; in test_libntlm_v1()
70 type1.os[1] = 0; in test_libntlm_v1()
182 struct ntlm_type1 type1; in test_libntlm_v2() local
188 memset(&type1, 0, sizeof(type1)); in test_libntlm_v2()
194 type1.hostname = NULL; in test_libntlm_v2()
195 type1.os[0] = 0; in test_libntlm_v2()
[all …]
/freebsd-13.1/contrib/ncurses/form/
H A Dfld_ftlink.c53 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) in NCURSES_EXPORT()
57 T((T_CALLED("link_fieldtype(%p,%p)"), (void *)type1, (void *)type2)); in NCURSES_EXPORT()
58 if (type1 && type2) in NCURSES_EXPORT()
67 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS)) in NCURSES_EXPORT()
69 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE)) in NCURSES_EXPORT()
71 nftyp->left = type1; in NCURSES_EXPORT()
73 type1->ref++; in NCURSES_EXPORT()
H A Dllib-lformw206 FIELDTYPE *type1,
H A Dllib-lform206 FIELDTYPE *type1,
H A Dllib-lformtw206 FIELDTYPE *type1,
H A Dllib-lformt206 FIELDTYPE *type1,
/freebsd-13.1/crypto/heimdal/lib/ntlm/
H A Dtest_ntlm.c51 struct ntlm_type1 type1; in test_parse() local
57 memset(&type1, 0, sizeof(type1)); in test_parse()
59 type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM; in test_parse()
60 type1.domain = rk_UNCONST(domain); in test_parse()
61 type1.hostname = NULL; in test_parse()
62 type1.os[0] = 0; in test_parse()
63 type1.os[1] = 0; in test_parse()
65 ret = heim_ntlm_encode_type1(&type1, &data); in test_parse()
69 memset(&type1, 0, sizeof(type1)); in test_parse()
71 ret = heim_ntlm_decode_type1(&data, &type1); in test_parse()
[all …]
H A Dntlm.c597 flags = type1->flags; in heim_ntlm_encode_type1()
600 if (type1->domain) { in heim_ntlm_encode_type1()
604 if (type1->hostname) { in heim_ntlm_encode_type1()
608 if (type1->os[0]) in heim_ntlm_encode_type1()
612 if (type1->domain) { in heim_ntlm_encode_type1()
613 domain.length = len_string(0, type1->domain); in heim_ntlm_encode_type1()
621 if (type1->hostname) { in heim_ntlm_encode_type1()
645 if (type1->domain) in heim_ntlm_encode_type1()
646 CHECK(put_string(out, 0, type1->domain), 0); in heim_ntlm_encode_type1()
647 if (type1->hostname) in heim_ntlm_encode_type1()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DGenericOpcodes.td42 let InOperandList = (ins type1:$src);
50 let InOperandList = (ins type1:$src);
72 let InOperandList = (ins type1:$src);
81 let InOperandList = (ins type1:$src);
111 let InOperandList = (ins type1:$src);
117 let InOperandList = (ins type1:$src);
382 let InOperandList = (ins unknown:$tst, type1:$src1, type1:$src2);
389 let InOperandList = (ins unknown:$tst, type1:$src1, type1:$src2);
1290 let InOperandList = (ins type1:$v1, type1:$v2, unknown:$mask);
1394 let InOperandList = (ins type0:$src, type1:$lsb, type1:$width);
[all …]
/freebsd-13.1/crypto/heimdal/lib/gssapi/ntlm/
H A Daccept_sec_context.c110 struct ntlm_type1 type1; in _gss_ntlm_accept_sec_context() local
130 ret = heim_ntlm_decode_type1(&data, &type1); in _gss_ntlm_accept_sec_context()
137 if ((type1.flags & NTLM_NEG_UNICODE) == 0) { in _gss_ntlm_accept_sec_context()
138 heim_ntlm_free_type1(&type1); in _gss_ntlm_accept_sec_context()
144 if (type1.flags & NTLM_NEG_SIGN) in _gss_ntlm_accept_sec_context()
146 if (type1.flags & NTLM_NEG_SIGN) in _gss_ntlm_accept_sec_context()
151 type1.flags, in _gss_ntlm_accept_sec_context()
152 type1.hostname, in _gss_ntlm_accept_sec_context()
153 type1.domain, in _gss_ntlm_accept_sec_context()
156 heim_ntlm_free_type1(&type1); in _gss_ntlm_accept_sec_context()
H A Dinit_sec_context.c248 struct ntlm_type1 type1; in _gss_ntlm_init_sec_context() local
284 memset(&type1, 0, sizeof(type1)); in _gss_ntlm_init_sec_context()
286 type1.flags = flags; in _gss_ntlm_init_sec_context()
287 type1.domain = name->domain; in _gss_ntlm_init_sec_context()
288 type1.hostname = NULL; in _gss_ntlm_init_sec_context()
289 type1.os[0] = 0; in _gss_ntlm_init_sec_context()
290 type1.os[1] = 0; in _gss_ntlm_init_sec_context()
292 ret = heim_ntlm_encode_type1(&type1, &data); in _gss_ntlm_init_sec_context()
/freebsd-13.1/sys/contrib/openzfs/lib/libspl/
H A Datomic.c65 #define ATOMIC_ADD(name, type1, type2) \ argument
66 void atomic_add_##name(volatile type1 *target, type2 bits) \
87 #define ATOMIC_SUB(name, type1, type2) \ argument
88 void atomic_sub_##name(volatile type1 *target, type2 bits) \
177 #define ATOMIC_ADD_NV(name, type1, type2) \ argument
178 type1 atomic_add_##name##_nv(volatile type1 *target, type2 bits) \
199 #define ATOMIC_SUB_NV(name, type1, type2) \ argument
200 type1 atomic_sub_##name##_nv(volatile type1 *target, type2 bits) \
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrGISel.td24 let InOperandList = (ins type1:$src, type2:$imm);
88 let InOperandList = (ins type1:$lane);
95 let InOperandList = (ins type0:$src, type1:$lane);
100 let InOperandList = (ins type0:$src, type1:$lane);
105 let InOperandList = (ins type0:$src, type1:$lane);
110 let InOperandList = (ins type0:$src, type1:$lane);
166 let InOperandList = (ins type0:$src1, type1:$src2);
172 let InOperandList = (ins type0:$src1, type1:$src2);
178 let InOperandList = (ins type0:$src1, type1:$src2);
/freebsd-13.1/usr.bin/mail/
H A Dcmd1.c253 return (type1(msgvec, 1, 1)); in more()
264 return (type1(msgvec, 0, 1)); in More()
275 return (type1(msgvec, 1, 0)); in type()
286 return (type1(msgvec, 0, 0)); in Type()
294 type1(int *msgvec, int doign, int page) in type1() function
H A Dextern.h239 int type1(int *, int, int);
/freebsd-13.1/sys/sys/
H A Dsdt.h136 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) argument
137 #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
347 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \ argument
350 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
353 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \ argument
356 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
360 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \ argument
363 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
[all …]
/freebsd-13.1/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_010_pos.ksh71 typeset type1=$4
73 make_object $objnum $mntpnt1 $type1
/freebsd-13.1/usr.sbin/bhyve/
H A Dsmbiostbl.c642 struct smbios_table_type1 *type1; in smbios_type1_initializer() local
647 type1 = (struct smbios_table_type1 *)curaddr; in smbios_type1_initializer()
658 uuid_enc_le(&type1->uuid, &uuid); in smbios_type1_initializer()
687 memcpy(&type1->uuid, digest, sizeof (digest)); in smbios_type1_initializer()
/freebsd-13.1/crypto/openssl/doc/man1/
H A Dstoreutl.pod85 The arg must be formatted as I</type0=value0/type1=value1/type2=...>.
97 The issuer arg must be formatted as I</type0=value0/type1=value1/type2=...>,
/freebsd-13.1/bin/sh/tests/builtins/
H A DMakefile172 ${PACKAGE}FILES+= type1.0 type1.0.stderr
/freebsd-13.1/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h719 void set_equivalent_type(kmp_hw_t type1, kmp_hw_t type2) { in set_equivalent_type() argument
720 KMP_DEBUG_ASSERT_VALID_HW_TYPE(type1); in set_equivalent_type()
725 equivalent[type1] = real_type2; in set_equivalent_type()
729 if (equivalent[type] == type1) { in set_equivalent_type()
H A Dkmp_affinity.cpp204 kmp_hw_t type1 = types[top_index1]; in _remove_radix1_layers() local
206 KMP_ASSERT_VALID_HW_TYPE(type1); in _remove_radix1_layers()
210 if ((type1 == KMP_HW_THREAD || type1 == KMP_HW_CORE || in _remove_radix1_layers()
211 type1 == KMP_HW_SOCKET) && in _remove_radix1_layers()
221 int pref1 = preference[type1]; in _remove_radix1_layers()
241 keep_type = type1; in _remove_radix1_layers()
243 remove_type = type1; in _remove_radix1_layers()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstructions.td2661 let InOperandList = (ins type1:$src);
2667 let InOperandList = (ins type1:$src);
2673 let InOperandList = (ins type1:$rsrc, type2:$vindex, type2:$voffset,
2682 let InOperandList = (ins type1:$rsrc, type2:$vindex, type2:$voffset,
2701 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
2710 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
2784 let InOperandList = (ins type0:$vdata, type1:$rsrc, type2:$vindex, type2:$voffset,
2810 let InOperandList = (ins type0:$vdata, type0:$cmp, type1:$rsrc, type2:$vindex,
2823 let InOperandList = (ins type1:$rsrc, type2:$offset, untyped_imm_0:$cachepolicy);
/freebsd-13.1/sys/amd64/vmm/
H A Dvmm.c1951 int type1, vector1; in nested_fault() local
1960 type1 = info1 & VM_INTINFO_TYPE; in nested_fault()
1962 if (type1 == VM_INTINFO_HWEXCEPTION && vector1 == IDT_DF) { in nested_fault()

12