/freebsd/crypto/openssl/include/openssl/ |
H A D | objects.h | 84 # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument 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) \ argument 90 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp) 91 # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument 92 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) 121 # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument 124 type1 const *a = a_; \ 128 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \ [all …]
|
/freebsd/crypto/heimdal/lib/gssapi/ |
H A D | test_ntlm.c | 55 struct ntlm_type1 type1; in test_libntlm_v1() local 62 memset(&type1, 0, sizeof(type1)); in test_libntlm_v1() 66 type1.flags = NTLM_NEG_UNICODE|NTLM_NEG_TARGET|NTLM_NEG_NTLM|flags; 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() 72 ret = heim_ntlm_encode_type1(&type1, &data); in test_libntlm_v1() 182 struct ntlm_type1 type1; in test_libntlm_v2() local 188 memset(&type1, 0, sizeof(type1)); in test_libntlm_v2() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | GenericOpcodes.td | 46 let InOperandList = (ins type1:$src); 54 let InOperandList = (ins type1:$src); 76 let InOperandList = (ins type1:$src); 85 let InOperandList = (ins type1:$src); 115 let InOperandList = (ins unknown:$addr, i32imm:$key, type1:$addrdisc, i64imm:$disc); 127 let InOperandList = (ins type1:$src); 133 let InOperandList = (ins type1:$src); 139 let InOperandList = (ins type1:$src); 166 let InOperandList = (ins type1:$list, unknown:$align); 174 let InOperandList = (ins type1:$src); [all …]
|
/freebsd/include/ssp/ |
H A D | string.h | 86 #define __ssp_bos_icheck3_restrict(fun, type1, type2) \ argument 87 static __inline type1 __ ## fun ## _ichk(type1 __restrict, type2 __restrict, size_t); \ 88 static __inline __attribute__((__always_inline__)) type1 \ 89 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src, size_t len) { \ 93 #define __ssp_bos_icheck3(fun, type1, type2) \ argument 94 static __inline type1 __ ## fun ## _ichk(type1, type2, size_t); \ 95 static __inline __attribute__((__always_inline__)) type1 \ 96 __ ## fun ## _ichk(type1 dst, type2 src, size_t len) { \ 100 #define __ssp_bos_icheck2_restrict(fun, type1, type2) \ argument 101 static __inline type1 __ ## fun ## _ichk(type1, type2); \ [all …]
|
/freebsd/crypto/heimdal/lib/ntlm/ |
H A D | test_ntlm.c | 51 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 D | ntlm.c | 579 * @param type1 the ntlm_type1 message to encode. 590 heim_ntlm_encode_type1(const struct ntlm_type1 *type1, struct ntlm_buf *data) in heim_ntlm_encode_type1() argument 597 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() 622 hostname.length = len_string(0, type1->hostname); in heim_ntlm_encode_type1() [all …]
|
/freebsd/crypto/heimdal/lib/gssapi/ntlm/ |
H A D | accept_sec_context.c | 110 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 D | init_sec_context.c | 248 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/contrib/ncurses/form/ |
H A D | fld_ftlink.c | 41 | FIELDTYPE *type1, 53 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() 71 nftyp->left = type1; in FORM_EXPORT() 73 type1->ref++; in FORM_EXPORT()
|
/freebsd/sys/contrib/openzfs/lib/libspl/ |
H A D | atomic.c | 64 #define ATOMIC_ADD(name, type1, type2) \ argument 65 void atomic_add_##name(volatile type1 *target, type2 bits) \ 86 #define ATOMIC_SUB(name, type1, type2) \ in ATOMIC_ADD() argument 87 void atomic_sub_##name(volatile type1 *target, type2 bits) \ in ATOMIC_ADD() 176 #define ATOMIC_ADD_NV(name, type1, type2) \ argument 177 type1 atomic_add_##name##_nv(volatile type1 *target, type2 bits) \ 198 #define ATOMIC_SUB_NV(name, type1, type2) \ in ATOMIC_ADD_NV() argument 199 type1 atomic_sub_##name##_nv(volatile type1 *target, type2 bits) \ in ATOMIC_ADD_NV()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrGISel.td | 23 let InOperandList = (ins type1:$src); 39 let InOperandList = (ins type1:$vl); 47 let InOperandList = (ins type1:$vl); 57 let InOperandList = (ins type0:$passthru, type1:$hi, type1:$lo, type2:$vl);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYISelDAGToDAG.cpp | 306 auto Type1 = N->getValueType(1); in selectAddCarry() local 315 Subtarget->has2E3() ? CSKY::CLRC32 : CSKY::CLRC16, Dl, Type1); in selectAddCarry() 317 Subtarget->has2E3() ? CSKY::ADDC32 : CSKY::ADDC16, Dl, {Type0, Type1}, in selectAddCarry() 321 Subtarget->has2E3() ? CSKY::SETC32 : CSKY::SETC16, Dl, Type1); in selectAddCarry() 323 Subtarget->has2E3() ? CSKY::ADDC32 : CSKY::ADDC16, Dl, {Type0, Type1}, in selectAddCarry() 328 Dl, {Type0, Type1}, {Op0, Op1, Op2}); in selectAddCarry() 349 auto Type1 = N->getValueType(1); in selectSubCarry() local 358 Subtarget->has2E3() ? CSKY::SETC32 : CSKY::SETC16, Dl, Type1); in selectSubCarry() 360 Subtarget->has2E3() ? CSKY::SUBC32 : CSKY::SUBC16, Dl, {Type0, Type1}, in selectSubCarry() 364 Subtarget->has2E3() ? CSKY::CLRC32 : CSKY::CLRC16, Dl, Type1); in selectSubCarry() [all …]
|
/freebsd/sys/sys/ |
H A D | sdt.h | 132 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) argument 133 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) argument 134 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) argument 135 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\ argument 382 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \ argument 385 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ 388 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \ argument 391 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ 395 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \ argument 398 SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \ [all …]
|
/freebsd/share/man/man3/ |
H A D | stdckdint.3 | 15 .Fn ckd_add "type1 *result" "type2 a" "type3 b" 17 .Fn ckd_sub "type1 *result" "type2 a" "type3 b" 19 .Fn ckd_mul "type1 *result" "type2 a" "type3 b"
|
/freebsd/crypto/heimdal/doc/doxyout/ntlm/html/ |
H A D | test__ntlm_8c-example.html | 74 …struct </span><a name="_a0"></a><a class="code" href="structntlm__type1.html">ntlm_type1</a> type1; 80 memset(&type1, 0, <span class="keyword">sizeof</span>(type1)); 82 …type1.<a name="a4"></a><a class="code" href="structntlm__type1.html#e2f4bbf968f7dde8f1cd2a71396a06… 83 …type1.<a name="a5"></a><a class="code" href="structntlm__type1.html#7d99f4da91742cd5bd94f1af1713c0… 84 …type1.<a name="a6"></a><a class="code" href="structntlm__type1.html#63e2c0e1d31b93802670e677b89ae7… 85 …type1.<a name="a7"></a><a class="code" href="structntlm__type1.html#3f0a2c98b021a211c030b09b37d35f… 86 …type1.<a class="code" href="structntlm__type1.html#3f0a2c98b021a211c030b09b37d35fa3">os</a>[1] = 0; 88 …lm__core.html#g0107727234287ac61a8801b0faff9dff">heim_ntlm_encode_type1</a>(&type1, &data); 92 memset(&type1, 0, <span class="keyword">sizeof</span>(type1)); 94 ret = heim_ntlm_decode_type1(&data, &type1); [all …]
|
/freebsd/contrib/kyua/store/ |
H A D | dbtypes_test.cpp | 56 template< typename Type1, typename Type2, typename Type3 > 58 do_ok_test(void (*bind)(sqlite::statement&, const char*, Type1), in do_ok_test() argument 82 template< typename Type1, typename Type2 > 84 do_invalid_test(Type1 value, in do_invalid_test()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64InstrGISel.td | 24 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/usr.bin/mail/ |
H A D | cmd1.c | 245 return (type1(msgvec, 1, 1)); in more() 256 return (type1(msgvec, 0, 1)); in More() 267 return (type1(msgvec, 1, 0)); in type() 278 return (type1(msgvec, 0, 0)); in Type() 286 type1(int *msgvec, int doign, int page) in type1() function
|
/freebsd/crypto/heimdal/doc/doxyout/ntlm/man/man3/ |
H A D | ntlm_core.3 | 25 .RI "int \fBheim_ntlm_encode_type1\fP (const struct \fBntlm_type1\fP *type1, struct \fBntlm_buf\fP … 231 .SS "int heim_ntlm_encode_type1 (const struct \fBntlm_type1\fP * type1, struct \fBntlm_buf\fP * dat… 237 \fItype1\fP the \fBntlm_type1\fP message to encode.
|
H A D | ntlm_type1.3 | 29 Struct for the NTLM type1 message info, the strings is assumed to be in UTF8. When filled in by the…
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | openssl-storeutl.pod.in | 89 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/sys/dev/hid/ |
H A D | bcm5974.c | 61 /* Type1 & Type2 trackpads */ 112 TYPE1, /* plain trackpad */ 130 [TYPE1] = { 247 .tp = tp + TYPE1, 256 .tp = tp + TYPE1, 536 * Type1 and Type2 touchpads use keyboard USB interface to switch from HID to 620 case TYPE1: in bcm5974_set_device_mode() 110 TYPE1, /* plain trackpad */ global() enumerator
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/ |
H A D | zfs_receive_010_pos.ksh | 71 typeset type1=$4 73 make_object $objnum $mntpnt1 $type1
|
/freebsd/sys/contrib/device-tree/include/dt-bindings/bus/ |
H A D | ti-sysc.h | 4 /* Generic sysc found on omap2 and later, also known as type1 */
|
/freebsd/secure/usr.bin/openssl/man/ |
H A D | openssl-storeutl.1 | 209 The arg must be formatted as \f(CW\*(C`/type0=value0/type1=value1/type2=...\*(C'\fR. 229 The issuer arg must be formatted as \f(CW\*(C`/type0=value0/type1=value1/type2=...\*(C'\fR,
|