Searched refs:type1 (Results 1 - 22 of 22) sorted by relevance

/freebsd-current/contrib/ncurses/form/
H A Dfld_ftlink.c41 | FIELDTYPE *type1,
53 link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2) argument
57 T((T_CALLED("link_fieldtype(%p,%p)"), (void *)type1, (void *)type2));
58 if (type1 && type2)
67 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS))
69 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE))
71 nftyp->left = type1;
73 type1->ref++;
/freebsd-current/crypto/openssl/include/openssl/
H A Dobjects.h84 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
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) \
90 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
91 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
92 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
121 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \
124 type1 const *a = a_; \
128 static type2 *OBJ_bsearch_##nm(type1 *ke
[all...]
/freebsd-current/crypto/heimdal/lib/gssapi/
H A Dtest_ntlm.c55 struct ntlm_type1 type1; local
62 memset(&type1, 0, sizeof(type1));
66 type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM|flags;
67 type1.domain = strdup(domain);
68 type1.hostname = NULL;
69 type1.os[0] = 0;
70 type1.os[1] = 0;
72 ret = heim_ntlm_encode_type1(&type1, &data);
182 struct ntlm_type1 type1; local
[all...]
/freebsd-current/include/ssp/
H A Dstring.h84 #define __ssp_bos_icheck3_restrict(fun, type1, type2) \
85 static __inline type1 __ ## fun ## _ichk(type1 __restrict, type2 __restrict, size_t); \
86 static __inline __attribute__((__always_inline__)) type1 \
87 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src, size_t len) { \
91 #define __ssp_bos_icheck3(fun, type1, type2) \
92 static __inline type1 __ ## fun ## _ichk(type1, type2, size_t); \
93 static __inline __attribute__((__always_inline__)) type1 \
94 __ ## fun ## _ichk(type1 ds
[all...]
/freebsd-current/crypto/heimdal/lib/ntlm/
H A Dtest_ntlm.c51 struct ntlm_type1 type1; local
57 memset(&type1, 0, sizeof(type1));
59 type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM;
60 type1.domain = rk_UNCONST(domain);
61 type1.hostname = NULL;
62 type1.os[0] = 0;
63 type1.os[1] = 0;
65 ret = heim_ntlm_encode_type1(&type1, &data);
69 memset(&type1,
[all...]
H A Dntlm.c579 * @param type1 the ntlm_type1 message to encode.
590 heim_ntlm_encode_type1(const struct ntlm_type1 *type1, struct ntlm_buf *data) argument
597 flags = type1->flags;
600 if (type1->domain) {
604 if (type1->hostname) {
608 if (type1->os[0])
612 if (type1->domain) {
613 domain.length = len_string(0, type1->domain);
621 if (type1->hostname) {
622 hostname.length = len_string(0, type1
[all...]
/freebsd-current/crypto/heimdal/lib/gssapi/ntlm/
H A Daccept_sec_context.c110 struct ntlm_type1 type1; local
130 ret = heim_ntlm_decode_type1(&data, &type1);
137 if ((type1.flags & NTLM_NEG_UNICODE) == 0) {
138 heim_ntlm_free_type1(&type1);
144 if (type1.flags & NTLM_NEG_SIGN)
146 if (type1.flags & NTLM_NEG_SIGN)
151 type1.flags,
152 type1.hostname,
153 type1.domain,
156 heim_ntlm_free_type1(&type1);
[all...]
H A Dinit_sec_context.c248 struct ntlm_type1 type1; local
284 memset(&type1, 0, sizeof(type1));
286 type1.flags = flags;
287 type1.domain = name->domain;
288 type1.hostname = NULL;
289 type1.os[0] = 0;
290 type1.os[1] = 0;
292 ret = heim_ntlm_encode_type1(&type1, &data);
/freebsd-current/sys/contrib/openzfs/lib/libspl/
H A Datomic.c68 #define ATOMIC_ADD(name, type1, type2) \
69 void atomic_add_##name(volatile type1 *target, type2 bits) \
92 #define ATOMIC_SUB(name, type1, type2) \
93 void atomic_sub_##name(volatile type1 *target, type2 bits) \
192 #define ATOMIC_ADD_NV(name, type1, type2) \
193 type1 atomic_add_##name##_nv(volatile type1 *target, type2 bits) \
216 #define ATOMIC_SUB_NV(name, type1, type2) \
217 type1 atomic_sub_##name##_nv(volatile type1 *targe
[all...]
/freebsd-current/usr.bin/mail/
H A Dcmd1.c245 return (type1(msgvec, 1, 1));
256 return (type1(msgvec, 0, 1));
267 return (type1(msgvec, 1, 0));
278 return (type1(msgvec, 0, 0));
286 type1(int *msgvec, int doign, int page) function
H A Dextern.h235 int type1(int *, int, int);
/freebsd-current/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-current/sys/sys/
H A Dsdt.h139 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1)
140 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2)
141 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3)
142 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\
375 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \
378 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
381 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \
384 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
388 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \
391 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NUL
[all...]
/freebsd-current/usr.sbin/bhyve/
H A Dsmbiostbl.c658 struct smbios_table_type1 *type1; local
663 type1 = (struct smbios_table_type1 *)curaddr;
676 uuid_enc_le(&type1->uuid, &uuid);
705 memcpy(&type1->uuid, digest, sizeof (digest));
/freebsd-current/bin/sh/tests/builtins/
H A DMakefile174 ${PACKAGE}FILES+= type1.0 type1.0.stderr
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h988 // Set type1 = type2
989 void set_equivalent_type(kmp_hw_t type1, kmp_hw_t type2) { argument
990 KMP_DEBUG_ASSERT_VALID_HW_TYPE(type1);
995 equivalent[type1] = real_type2;
997 // be equivalent to type1. They all must be checked and reset to type2.
999 if (equivalent[type] == type1) {
1086 kmp_hw_t type1 = ((const item_t *)i1)->type; local
1088 int level1 = __kmp_topology->get_level(type1);
H A Dkmp_affinity.cpp354 kmp_hw_t type1 = types[top_index1]; local
356 KMP_ASSERT_VALID_HW_TYPE(type1);
360 if ((type1 == KMP_HW_THREAD || type1 == KMP_HW_CORE ||
361 type1 == KMP_HW_SOCKET) &&
371 int pref1 = preference[type1];
391 keep_type = type1;
393 remove_type = type1;
/freebsd-current/sys/amd64/vmm/
H A Dvmm.c2117 int type1, vector1; local
2126 type1 = info1 & VM_INTINFO_TYPE;
2128 if (type1 == VM_INTINFO_HWEXCEPTION && vector1 == IDT_DF) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h229 static bool AreTypesSame(CompilerType type1, CompilerType type2,
H A DTypeSystemClang.cpp1172 bool TypeSystemClang::AreTypesSame(CompilerType type1, CompilerType type2, argument
1174 auto ast = type1.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>();
1175 if (!ast || type1.GetTypeSystem() != type2.GetTypeSystem())
1178 if (type1.GetOpaqueQualType() == type2.GetOpaqueQualType())
1181 QualType type1_qual = ClangUtil::GetQualType(type1);
/freebsd-current/sys/dev/mrsas/
H A Dmrsas.h3054 } type1; member in union:_MRSAS_DRV_PCI_COMMON_HEADER::__anon3533
/freebsd-current/contrib/sqlite3/
H A Dsqlite3.c94396 u16 type1; /* Numeric type of left operand */ local
130325 int type0, type1; local
[all...]

Completed in 831 milliseconds