| /src/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
| H A D | cert-onecolumn.pem | 39 w 66 W 95 2 115 W 119 2 127 W 135 W 147 W 177 w 183 2 [all …]
|
| H A D | dsa-onecolumn.pem | 8 W 43 W 51 W 52 2 107 W 118 2 126 W 133 w 144 w 151 2 [all …]
|
| /src/crypto/openssl/crypto/chacha/asm/ |
| H A D | chacha-loongarch64.pl | 42 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 59 .long 0,1,2,3,4,5,6,7 61 .long 0,1,2,3 69 # $a1 = arg #2 (inp pointer) 77 ld.w $t0,$t0,0 115 add.w @x[$a0],@x[$a0],@x[$b0] 117 rotri.w @x[$d0],@x[$d0],16 # rotate left 16 bits 118 add.w @x[$a1],@x[$a1],@x[$b1] 120 rotri.w @x[$d1],@x[$d1],16 122 add.w @x[$c0],@x[$c0],@x[$d0] [all …]
|
| /src/crypto/krb5/src/lib/crypto/builtin/aes/ |
| H A D | aestab.c | 31 #define sb_data(w) {\ argument 32 w(0x63), w(0x7c), w(0x77), w(0x7b), w(0xf2), w(0x6b), w(0x6f), w(0xc5),\ 33 w(0x30), w(0x01), w(0x67), w(0x2b), w(0xfe), w(0xd7), w(0xab), w(0x76),\ 34 w(0xca), w(0x82), w(0xc9), w(0x7d), w(0xfa), w(0x59), w(0x47), w(0xf0),\ 35 w(0xad), w(0xd4), w(0xa2), w(0xaf), w(0x9c), w(0xa4), w(0x72), w(0xc0),\ 36 w(0xb7), w(0xfd), w(0x93), w(0x26), w(0x36), w(0x3f), w(0xf7), w(0xcc),\ 37 w(0x34), w(0xa5), w(0xe5), w(0xf1), w(0x71), w(0xd8), w(0x31), w(0x15),\ 38 w(0x04), w(0xc7), w(0x23), w(0xc3), w(0x18), w(0x96), w(0x05), w(0x9a),\ 39 w(0x07), w(0x12), w(0x80), w(0xe2), w(0xeb), w(0x27), w(0xb2), w(0x75),\ 40 w(0x09), w(0x83), w(0x2c), w(0x1a), w(0x1b), w(0x6e), w(0x5a), w(0xa0),\ [all …]
|
| /src/contrib/bearssl/src/ec/ |
| H A D | ec_c25519_m62.c | 72 * A field element is encoded as five 64-bit integers, in basis 2^51. 73 * Limbs may be occasionally larger than 2^51, to save on carry 85 uint64_t m, w; in f255_cswap() local 88 w = m & (a[0] ^ b[0]); a[0] ^= w; b[0] ^= w; in f255_cswap() 89 w = m & (a[1] ^ b[1]); a[1] ^= w; b[1] ^= w; in f255_cswap() 90 w = m & (a[2] ^ b[2]); a[2] ^= w; b[2] ^= w; in f255_cswap() 91 w = m & (a[3] ^ b[3]); a[3] ^= w; b[3] ^= w; in f255_cswap() 92 w = m & (a[4] ^ b[4]); a[4] ^= w; b[4] ^= w; in f255_cswap() 103 d[2] = a[2] + b[2]; in f255_add() 111 * partially reduced, with max value 2^255+19456; moreover, all [all …]
|
| /src/share/doc/papers/kernmalloc/ |
| H A D | appendix.ms | 10 'ds / \\h'\\w' 'u-\\w'/'u'/ 11 'ds /* \\h'\\w' 'u-\\w'/'u'/* 17 'ev 2 23 \f2\s12\h'\\n(.lu-\w'\\*(=f'u'\\*(=f\fP\s0\h'|0u' 29 'ev 2 36 'if \\n(cm=1 'ft 2 43 'ft 2 59 \f2\s14\h'\\n(.lu-\w'\\$1'u'\\$1\fP\s0\h'|0u'\c 81 .\" 2. Redistributions in binary form must reproduce the above copyright 105 \fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c [all …]
|
| /src/sys/dev/usb/ |
| H A D | usb_endian.h | 2 * SPDX-License-Identifier: BSD-2-Clause 11 * 2. Redistributions in binary form must reproduce the above copyright 41 typedef uint8_t uWord[2]; 49 #define UGETB(w) \ argument 50 ((w)[0]) 52 #define UGETW(w) \ argument 53 ((w)[0] | \ 54 (((uint16_t)((w)[1])) << 8)) 56 #define UGETDW(w) \ argument 57 ((w)[0] | \ [all …]
|
| /src/sys/contrib/libsodium/src/libsodium/include/sodium/private/ |
| H A D | common.h | 51 uint64_t w; in load64_le() local 52 memcpy(&w, src, sizeof w); in load64_le() 53 return w; in load64_le() 55 uint64_t w = (uint64_t) src[0]; in load64_le() 56 w |= (uint64_t) src[1] << 8; in load64_le() 57 w |= (uint64_t) src[2] << 16; in load64_le() 58 w |= (uint64_t) src[3] << 24; in load64_le() 59 w |= (uint64_t) src[4] << 32; in load64_le() 60 w |= (uint64_t) src[5] << 40; in load64_le() 61 w |= (uint64_t) src[6] << 48; in load64_le() [all …]
|
| /src/contrib/unbound/sldns/ |
| H A D | wire2str.c | 188 { 2, "UL" }, 388 int w = vsnprintf(*str, *slen, format, args); in sldns_str_vprint() local 389 if(w < 0) { in sldns_str_vprint() 392 } else if((size_t)w >= *slen) { in sldns_str_vprint() 396 *str += w; in sldns_str_vprint() 397 *slen -= w; in sldns_str_vprint() 399 return w; in sldns_str_vprint() 404 int w; in sldns_str_print() local 407 w = sldns_str_vprint(str, slen, format, args); in sldns_str_print() 409 return w; in sldns_str_print() [all …]
|
| /src/sys/netinet6/ |
| H A D | in6_cksum.c | 12 * 2. Redistributions in binary form must reproduce the above copyright 43 * 2. Redistributions in binary form must reproduce the above copyright 81 uint16_t s[2]; 86 uint8_t c[2]; 94 uint16_t scope, *w; in _in6_cksum_pseudo() local 110 uph.ph.ph_zero[0] = uph.ph.ph_zero[1] = uph.ph.ph_zero[2] = 0; in _in6_cksum_pseudo() 115 sum += uph.phs[2]; sum += uph.phs[3]; in _in6_cksum_pseudo() 119 w = (u_int16_t *)&ip6->ip6_src; in _in6_cksum_pseudo() 120 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in _in6_cksum_pseudo() 121 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in _in6_cksum_pseudo() [all …]
|
| /src/usr.bin/jot/tests/ |
| H A D | regress.sh | 6 REGRESSION_TEST(`x', `jot -w "%X" -s , 100 1 200') 7 REGRESSION_TEST(`hhhh', `jot 50 20 120 2') 9 REGRESSION_TEST(`hhdh', `jot 50 20 - 2') 11 REGRESSION_TEST(`hdhh', `jot 50 - 120 2') 13 REGRESSION_TEST(`hddh', `jot 50 - - 2') 15 REGRESSION_TEST(`dhhh', `jot - 20 120 2') 17 REGRESSION_TEST(`dhdh', `jot - 20 - 2') 19 REGRESSION_TEST(`ddhh', `jot - - 120 2') 21 REGRESSION_TEST(`dddh', `jot - - - 2') 23 REGRESSION_TEST(`hhhh2', `jot 30 20 160 2') [all …]
|
| /src/sys/contrib/ck/include/gcc/aarch64/ |
| H A D | ck_pr_llsc.h | 11 * 2. Redistributions in binary form must reproduce the above copyright 36 ck_pr_cas_64_2_value(uint64_t target[2], uint64_t compare[2], uint64_t set[2], uint64_t value[2]) in ck_pr_cas_64_2_value() argument 42 "mov %2, %0\n" in ck_pr_cas_64_2_value() 48 "cbnz %1, 2f\n" in ck_pr_cas_64_2_value() 52 "2:" in ck_pr_cas_64_2_value() 70 ck_pr_cas_64_2(uint64_t target[2], uint64_t compare[2], uint64_t set[2]) in ck_pr_cas_64_2() argument 75 "ldxp %0, %1, [%2]\n" in ck_pr_cas_64_2() 80 "cbnz %1, 2f\n" in ck_pr_cas_64_2() 81 "stxp %w0, %5, %6, [%2]\n" in ck_pr_cas_64_2() 84 "2:" in ck_pr_cas_64_2() [all …]
|
| H A D | ck_pr_lse.h | 12 * 2. Redistributions in binary form must reproduce the above copyright 38 ck_pr_cas_64_2_value(uint64_t target[2], uint64_t compare[2], uint64_t set[2], uint64_t value[2]) in ck_pr_cas_64_2_value() argument 48 "eor %2, %0, %7\n" in ck_pr_cas_64_2_value() 50 "orr %2, %2, %3\n" in ck_pr_cas_64_2_value() 71 ck_pr_cas_64_2(uint64_t target[2], uint64_t compare[2], uint64_t set[2]) in ck_pr_cas_64_2() argument 78 __asm__ __volatile__("casp %0, %1, %2, %3, [%4]\n" in ck_pr_cas_64_2() 97 #define CK_PR_CAS(N, M, T, W, R) \ argument 103 "cas" W " %" R "0, %" R "2, [%1]\n"\ 115 "cas" W " %" R "0, %" R "2, [%1]\n"\ 125 #define CK_PR_CAS_S(N, M, W, R) CK_PR_CAS(N, M, M, W, R) argument [all …]
|
| /src/sys/i386/i386/ |
| H A D | in_cksum_machdep.c | 12 * 2. Redistributions in binary form must reproduce the above copyright 70 u_short *w; in in_cksum_skip() local 74 union { char c[2]; u_short s; } su; in in_cksum_skip() 80 w = (u_short *)(mtod(m, u_char *) + skip); in in_cksum_skip() 90 w = mtod(m, u_short *); in in_cksum_skip() 101 su.c[1] = *(u_char *)w; in in_cksum_skip() 103 w = (u_short *)((char *)w + 1); in in_cksum_skip() 116 if (3 & (int) w) { in in_cksum_skip() 118 if ((1 & (int) w) && (mlen > 0)) { in in_cksum_skip() 120 su.c[0] = *(char *)w; in in_cksum_skip() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | X86DisassemblerDecoderCommon.h | 61 ATTR_XD = 0x1 << 2, 91 ENUM_ENTRY(IC_XD, 2, \ 93 ENUM_ENTRY(IC_XS, 2, \ 104 "requires a REX.W prefix, so operands change width; overrides " \ 107 "requires a REX.W prefix and 0x67 prefix") \ 112 ENUM_ENTRY(IC_64BIT_XD, 6, "XD instructions are SSE; REX.W is secondary") \ 123 ENUM_ENTRY(IC_64BIT_REX2, 2, "requires a REX2 prefix") \ 125 ENUM_ENTRY(IC_VEX_XS, 2, "requires VEX and the XS prefix") \ 126 ENUM_ENTRY(IC_VEX_XD, 2, "requires VEX and the XD prefix") \ 127 ENUM_ENTRY(IC_VEX_OPSIZE, 2, "requires VEX and the OpSize prefix") \ [all …]
|
| /src/contrib/bearssl/src/symcipher/ |
| H A D | aes_ct64_ctrcbc.c | 75 uint32_t w[16]; in br_aes_ct64_ctrcbc_ctr() local 83 j = (len >= 64) ? 16 : (int)(len >> 2); in br_aes_ct64_ctrcbc_ctr() 87 w[i + 0] = br_swap32(iv0); in br_aes_ct64_ctrcbc_ctr() 88 w[i + 1] = br_swap32(iv1); in br_aes_ct64_ctrcbc_ctr() 89 w[i + 2] = br_swap32(iv2); in br_aes_ct64_ctrcbc_ctr() 90 w[i + 3] = br_swap32(iv3); in br_aes_ct64_ctrcbc_ctr() 99 memset(w + i, 0, (16 - i) * sizeof(uint32_t)); in br_aes_ct64_ctrcbc_ctr() 103 &q[i], &q[i + 4], w + (i << 2)); in br_aes_ct64_ctrcbc_ctr() 110 w + (i << 2), q[i], q[i + 4]); in br_aes_ct64_ctrcbc_ctr() 113 br_range_enc32le(tmp, w, 16); in br_aes_ct64_ctrcbc_ctr() [all …]
|
| /src/contrib/tcpdump/ |
| H A D | print-smb.c | 5 * BSD-style license that accompanies tcpdump or the GNU GPL version 2 96 fmt = "Attribute=[A]\nSearchCount=[u]\nFlags=[w]\nLevel=[uP4]\nFile=[S]\n"; in trans2_findfirst() 98 fmt = "Handle=[w]\nCount=[u]\nEOS=[w]\nEoffset=[u]\nLastNameOfs=[w]\n"; in trans2_findfirst() 121 fmt = "idFileSystem=[W]\nSectorUnit=[U]\nUnit=[U]\nAvail=[U]\nSectorSize=[u]\n"; in trans2_qfsinfo() 123 case 2: in trans2_qfsinfo() 127 fmt = "Capabilities=[W]\nMaxFileLen=[U]\nVolNameLen=[lU]\nVolume=[C]\n"; in trans2_qfsinfo() 143 …{ "Flags2=[w]\nMode=[w]\nSearchAttrib=[A]\nAttrib=[A]\nTime=[T2]\nOFun=[w]\nSize=[U]\nRes=([w, w, … 145 …"Handle=[u]\nAttrib=[A]\nTime=[T2]\nSize=[U]\nAccess=[w]\nType=[w]\nState=[w]\nAction=[w]\nInode=[… 149 { 2, "TRANSACT2_FINDNEXT", 0, DEFDESCRIPT }, 173 const u_char *w = words + 1; in print_trans2() local [all …]
|
| /src/share/doc/papers/sysperf/ |
| H A D | appendix.ms | 10 'ds / \\h'\\w' 'u-\\w'/'u'/ 11 'ds /* \\h'\\w' 'u-\\w'/'u'/* 17 'ev 2 23 \f2\s12\h'\\n(.lu-\w'\\*(=f'u'\\*(=f\fP\s0\h'|0u' 29 'ev 2 36 'if \\n(cm=1 'ft 2 43 'ft 2 59 \f2\s14\h'\\n(.lu-\w'\\$1'u'\\$1\fP\s0\h'|0u'\c 81 .\" 2. Redistributions in binary form must reproduce the above copyright 111 \s+2Appendix A \- Benchmark sources\s-2 [all …]
|
| /src/contrib/llvm-project/clang/lib/Headers/ |
| H A D | sm3intrin.h | 51 /// W[0] := __C.dword[0] 52 /// W[1] := __C.dword[1] 53 /// W[2] := __C.dword[2] 54 /// W[3] := __C.dword[3] 55 /// W[7] := __A.dword[0] 56 /// W[8] := __A.dword[1] 57 /// W[9] := __A.dword[2] 58 /// W[10] := __A.dword[3] 59 /// W[13] := __B.dword[0] 60 /// W[14] := __B.dword[1] [all …]
|
| /src/contrib/file/tests/ |
| H A D | HWP97.hwp.testfile | 1 …World HWP2016… 2 m��9eI��yؾ�s�N��i�� ���cWgg�K�q1�3.&}�=��k9�r��+w�u�xp 5 …$��܅y҅���\t�8���#S&O�貔������ �Z��SV��u�C�:�!g���阔���5*;�L4e�<� ������w��N�k��Kf{�iq���I'O… 6 …��>�ҍӖ�+#��Mznb�'f|./X;G�k3�<���<�dW(�(���W9����}]=����Z$ )ЕX 0nk�S��\�*���|d t͵*���Y… 7 >��ĕ�y~/Yۿ��5����W����)�Wȴ�8tǮI��G�MW��ֺD��y�.;O�&�^�0��/�z�!���� 8 …~V��mqL�rQ9L�#������ 9�}\��q]ɰ^6�G�����]��Փ3Q�"����l����a�ˤ�&W:Ln�VdR�u�;*g�^���… 9 Lm����V�_"���M'I�u��c�����Qש��w�U�#G
|
| /src/sys/contrib/ck/include/gcc/ppc/ |
| H A D | ck_pr.h | 11 * 2. Redistributions in binary form must reproduce the above copyright 59 "or 2, 2, 2;" ::: "memory"); in ck_pr_stall() 157 "bne- 2f;" \ 158 "stwcx. %2, 0, %1;" \ 160 "2:" \ 176 "bne- 2f;" \ 177 "stwcx. %2, 0, %1;" \ 179 "2:" \ 197 #define CK_PR_FAS(N, M, T, W) \ argument 203 "l" W "arx %0, 0, %1;" \ [all …]
|
| /src/contrib/libarchive/libarchive/ |
| H A D | archive_blake2_impl.h | 37 uint32_t w; in load32() local 38 memcpy(&w, src, sizeof w); in load32() 39 return w; in load32() 44 (( uint32_t )( p[2] ) << 16) | in load32() 52 uint64_t w; in load64() local 53 memcpy(&w, src, sizeof w); in load64() 54 return w; in load64() 59 (( uint64_t )( p[2] ) << 16) | in load64() 71 uint16_t w; in load16() local 72 memcpy(&w, src, sizeof w); in load16() [all …]
|
| /src/sys/arm64/include/ |
| H A D | atomic.h | 10 * 2. Redistributions in binary form must reproduce the above copyright 84 #define _ATOMIC_OP_IMPL(t, w, s, op, llsc_asm_op, lse_asm_op, pre, bar, a, l) \ argument 92 "1: ld"#a"xr"#s" %"#w"0, [%2]\n" \ 93 " "#llsc_asm_op" %"#w"0, %"#w"0, %"#w"3\n" \ 94 " st"#l"xr"#s" %w1, %"#w"0, [%2]\n" \ 109 "ld"#lse_asm_op#a#l#s" %"#w"2, %"#w"0, [%1]\n" \ 126 _ATOMIC_OP_IMPL(8, w, b, op, llsc_asm_op, lse_asm_op, pre, \ 128 _ATOMIC_OP_IMPL(16, w, h, op, llsc_asm_op, lse_asm_op, pre, \ 130 _ATOMIC_OP_IMPL(32, w, , op, llsc_asm_op, lse_asm_op, pre, \ 155 #define _ATOMIC_CMPSET_IMPL(t, w, s, bar, a, l) \ argument [all …]
|
| /src/sys/contrib/ck/include/gcc/ppc64/ |
| H A D | ck_pr.h | 10 * 2. Redistributions in binary form must reproduce the above copyright 58 "or 2, 2, 2;" ::: "memory"); in ck_pr_stall() 160 "bne- 2f;" in ck_pr_cas_64_value() 161 "stdcx. %2, 0, %1;" in ck_pr_cas_64_value() 163 "2:" in ck_pr_cas_64_value() 182 "bne- 2f;" in ck_pr_cas_ptr_value() 183 "stdcx. %2, 0, %1;" in ck_pr_cas_ptr_value() 185 "2:" in ck_pr_cas_ptr_value() 204 "bne- 2f;" in ck_pr_cas_64() 205 "stdcx. %2, 0, %1;" in ck_pr_cas_64() [all …]
|
| /src/crypto/openssl/providers/implementations/digests/ |
| H A D | blake2_impl.h | 25 uint32_t w; in load32() local 26 memcpy(&w, src, sizeof(w)); in load32() 27 return w; in load32() 29 uint32_t w = ((uint32_t)src[0]) in load32() local 31 | ((uint32_t)src[2] << 16) in load32() 33 return w; in load32() 42 uint64_t w; in load64() local 43 memcpy(&w, src, sizeof(w)); in load64() 44 return w; in load64() 46 uint64_t w = ((uint64_t)src[0]) in load64() local [all …]
|