| /src/tests/sys/cddl/zfs/tests/cli_root/zpool_upgrade/blockfiles/ |
| H A D | Makefile | 8 ${PACKAGE}FILES+= zfs-broken-mirror1.dat.Z 9 ${PACKAGE}FILES+= zfs-broken-mirror2.dat.Z 10 ${PACKAGE}FILES+= zfs-pool-v1.dat.Z 11 ${PACKAGE}FILES+= zfs-pool-v10.dat.Z 12 ${PACKAGE}FILES+= zfs-pool-v11.dat.Z 13 ${PACKAGE}FILES+= zfs-pool-v12.dat.Z 14 ${PACKAGE}FILES+= zfs-pool-v13.dat.Z 15 ${PACKAGE}FILES+= zfs-pool-v14.dat.Z 16 ${PACKAGE}FILES+= zfs-pool-v15.dat.Z 17 ${PACKAGE}FILES+= zfs-pool-v1mirror1.dat.Z [all …]
|
| /src/usr.bin/compress/tests/ |
| H A D | compress_test.sh | 39 \050\123\252\134\211\360\206\002" >file1.Z 40 atf_check uncompress file1.Z 42 atf_check test ! -e file1.Z 58 \050\123\252\134\211\360\206\002" >file1.Z 61 atf_check test ! -e file1.Z 77 \050\123\252\134\211\360\206\002" >file1.Z 94 \050\123\252\134\211\360\206\002" >file1.Z 95 atf_check -o file:expectfile1 uncompress -c file1.Z 96 atf_check test -e file1.Z 110 atf_check -o file:expectfile1 uncompress -c file1.Z [all …]
|
| /src/lib/libefivar/ |
| H A D | efivar.c | 40 #define Z { 0 } macro 42 const efi_guid_t efi_guid_empty = Z; 46 { "00000000-0000-0000-0000-000000000000", "zero", Z }, 47 { "093e0fae-a6c4-4f50-9f1b-d41e2b89c19a", "sha512", Z }, 48 { "0abba7dc-e516-4167-bbf5-4d9d1c739416", "redhat", Z }, 49 { "0b6e5233-a65c-44c9-9407-d9ab83bfc8bd", "sha224", Z }, 50 { "126a762d-5758-4fca-8531-201a7f57f850", "lenovo_boot_menu", Z }, 51 { "3bd2a492-96c0-4079-b420-fcf98ef103ed", "x509_sha256", Z }, 52 { "3c5766e8-269c-4e34-aa14-ed776e85b3b6", "rsa2048", Z }, 53 { "3CC24E96-22C7-41D8-8863-8E39DCDCC2CF", "lenovo", Z }, [all …]
|
| /src/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
| H A D | cert-onecolumn.pem | 70 Z 86 Z 90 Z 106 Z 110 Z 116 Z 122 Z 130 Z 146 Z 170 Z [all …]
|
| H A D | dsa-onecolumn.pem | 187 Z 227 Z 291 Z 404 Z 532 Z 583 Z 747 Z 897 Z 933 Z 936 Z [all …]
|
| /src/crypto/openssl/crypto/ec/ |
| H A D | ecp_nistputil.c | 82 #define Z(I) (&((char *)point_array)[(3 * (I) + 2) * felem_size]) in ossl_ec_GFp_nistp_points_make_affine_internal() macro 84 if (!felem_is_zero(Z(0))) in ossl_ec_GFp_nistp_points_make_affine_internal() 85 felem_assign(tmp_felem(0), Z(0)); in ossl_ec_GFp_nistp_points_make_affine_internal() 89 if (!felem_is_zero(Z(i))) in ossl_ec_GFp_nistp_points_make_affine_internal() 90 felem_mul(tmp_felem(i), tmp_felem(i - 1), Z(i)); in ossl_ec_GFp_nistp_points_make_affine_internal() 111 if (!felem_is_zero(Z(i))) { in ossl_ec_GFp_nistp_points_make_affine_internal() 116 felem_mul(tmp_felem(i - 1), tmp_felem(i), Z(i)); in ossl_ec_GFp_nistp_points_make_affine_internal() 121 felem_square(Z(i), tmp_felem(num)); /* 1/(Z^2) */ in ossl_ec_GFp_nistp_points_make_affine_internal() 122 felem_mul(X(i), X(i), Z(i)); /* X/(Z^2) */ in ossl_ec_GFp_nistp_points_make_affine_internal() 123 felem_mul(Z(i), Z(i), tmp_felem(num)); /* 1/(Z^3) */ in ossl_ec_GFp_nistp_points_make_affine_internal() [all …]
|
| H A D | ecp_sm2p256.c | 33 BN_ULONG Z[P256_LIMBS]; member 129 is_equal(a->X, b->X) && is_equal(a->Y, b->Y) && is_equal(a->Z, b->Z) 186 if (is_zeros(P->Z)) { in ecp_sm2p256_point_double() 188 R->Z[i] = 0; in ecp_sm2p256_point_double() 193 ecp_sm2p256_sqr(tmp0, P->Z); in ecp_sm2p256_point_double() 199 ecp_sm2p256_mul(R->Z, R->Y, P->Z); in ecp_sm2p256_point_double() 224 if (is_zeros(P->Z)) { in ecp_sm2p256_point_add_affine() 228 R->Z[i] = 0; in ecp_sm2p256_point_add_affine() 230 R->Z[0] = 1; in ecp_sm2p256_point_add_affine() 235 ecp_sm2p256_sqr(tmp0, P->Z); in ecp_sm2p256_point_add_affine() [all …]
|
| H A D | ecp_smpl.c | 326 point->Z = BN_new(); in ossl_ec_GFp_simple_point_init() 329 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GFp_simple_point_init() 332 BN_free(point->Z); in ossl_ec_GFp_simple_point_init() 342 BN_free(point->Z); in ossl_ec_GFp_simple_point_finish() 349 BN_clear_free(point->Z); in ossl_ec_GFp_simple_point_clear_finish() 359 if (!BN_copy(dest->Z, src->Z)) in ossl_ec_GFp_simple_point_copy() 371 BN_zero(point->Z); in ossl_ec_GFp_simple_point_set_to_infinity() 412 if (!BN_nnmod(point->Z, z, group->field, ctx)) in ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp() 414 Z_is_one = BN_is_one(point->Z); in ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp() 417 if (!group->meth->field_set_to_one(group, point->Z, ctx)) in ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp() [all …]
|
| H A D | ec2_smpl.c | 224 point->Z = BN_new(); in ossl_ec_GF2m_simple_point_init() 226 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GF2m_simple_point_init() 229 BN_free(point->Z); in ossl_ec_GF2m_simple_point_init() 240 BN_free(point->Z); in ossl_ec_GF2m_simple_point_finish() 248 BN_clear_free(point->Z); in ossl_ec_GF2m_simple_point_clear_finish() 262 if (!BN_copy(dest->Z, src->Z)) in ossl_ec_GF2m_simple_point_copy() 278 BN_zero(point->Z); in ossl_ec_GF2m_simple_point_set_to_infinity() 304 if (!BN_copy(point->Z, BN_value_one())) in ossl_ec_GF2m_simple_point_set_affine_coordinates() 306 BN_set_negative(point->Z, 0); in ossl_ec_GF2m_simple_point_set_affine_coordinates() 330 if (BN_cmp(point->Z, BN_value_one())) { in ossl_ec_GF2m_simple_point_get_affine_coordinates() [all …]
|
| /src/tools/regression/usr.bin/env/ |
| H A D | regress-env.rgdata | 38 script:/bin/echo A-${TESTVAR}-Z 39 stdout:A-a1a-Z 43 script:/bin/echo A-${TESTVAR}-Z 44 stdout:A-Global-TV-Value-Z 49 script:/bin/echo A-${TESTVAR}-Z 50 stdout:A-bb22bb-Z 54 script:/bin/echo A-${TESTVAR}-Z 55 stdout:A-ab22ab-Z 59 script:/bin/echo A-${TESTVAR}-Z 60 stdout:A-abc 33 abc-Z [all …]
|
| /src/share/colldef/ |
| H A D | hu_HU.ISO8859-2.src | 35 collating-element <D-Z> from "<D><Z>" 47 collating-element <D-D-Z> from "<D><D><Z>" 59 collating-element <D-Z-S> from "<D><Z><S>" 62 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_ACUTE> from "<D><Z><LATIN_CAPITAL_LETTER_S_WITH_… 65 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_CARON> from "<D><Z><LATIN_CAPITAL_LETTER_S_WITH_… 68 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_CEDILLA> from "<D><Z><LATIN_CAPITAL_LETTER_S_WIT… 71 collating-element <D-D-Z-S> from "<D><D><Z><S>" 74 collating-element <D-D-Z-LATIN_CAPITAL_LETTER_S_WITH_ACUTE> from "<D><D><Z><LATIN_CAPITAL_LETTER_S_… 77 collating-element <D-D-Z-LATIN_CAPITAL_LETTER_S_WITH_CARON> from "<D><D><Z><LATIN_CAPITAL_LETTER_S_… 80 collating-element <D-D-Z-LATIN_CAPITAL_LETTER_S_WITH_CEDILLA> from "<D><D><Z><LATIN_CAPITAL_LETTER_… [all …]
|
| /src/crypto/libecc/src/curves/ |
| H A D | prj_pt.c | 57 ret = fp_init(&(in->Z), curve->a.ctx); EG(ret, err); in prj_pt_init() 78 ret = fp_copy(&(in->Z), zcoord); in prj_pt_init_from_coords() 97 fp_uninit(&(in->Z)); in prj_pt_uninit() 114 ret = fp_iszero(&(in->Z), iszero); in prj_pt_iszero() 132 ret = fp_zero(&(out->Z)); in prj_pt_zero() 154 fp X, Y, Z; in prj_pt_is_on_curve() local 155 X.magic = Y.magic = Z.magic = WORD(0); in prj_pt_is_on_curve() 163 ret = fp_init(&Z, in->X.ctx); EG(ret, err); in prj_pt_is_on_curve() 168 ret = fp_mul(&Z, &(in->X), &(in->crv->a)); EG(ret, err); in prj_pt_is_on_curve() 169 ret = fp_mul(&Y, &(in->crv->b), &(in->Z)); EG(ret, err); in prj_pt_is_on_curve() [all …]
|
| /src/crypto/openssl/crypto/cast/ |
| H A D | c_skey.c | 37 CAST_LONG X[4], Z[4]; in CAST_set_key() local 60 CAST_exp(l, Z, z, 0); in CAST_set_key() 62 CAST_exp(l, Z, z, 4); in CAST_set_key() 64 CAST_exp(l, Z, z, 8); in CAST_set_key() 66 CAST_exp(l, Z, z, 12); in CAST_set_key() 73 l = Z[2] ^ S4[z[5]] ^ S5[z[7]] ^ S6[z[4]] ^ S7[z[6]] ^ S6[z[0]]; in CAST_set_key() 75 l = Z[0] ^ S4[x[0]] ^ S5[x[2]] ^ S6[x[1]] ^ S7[x[3]] ^ S7[z[2]]; in CAST_set_key() 77 l = Z[1] ^ S4[x[7]] ^ S5[x[6]] ^ S6[x[5]] ^ S7[x[4]] ^ S4[z[1]]; in CAST_set_key() 79 l = Z[3] ^ S4[x[10]] ^ S5[x[9]] ^ S6[x[11]] ^ S7[x[8]] ^ S5[z[3]]; in CAST_set_key() 88 CAST_exp(l, Z, z, 0); in CAST_set_key() [all …]
|
| /src/sys/contrib/openzfs/config/ |
| H A D | ax_compare_version.m4 | 98 A=`echo "$1" | sed -e 's/\([[0-9]]*\)/Z\1Z/g' \ 99 -e 's/Z\([[0-9]]\)Z/Z0\1Z/g' \ 100 -e 's/Z\([[0-9]][[0-9]]\)Z/Z0\1Z/g' \ 101 -e 's/Z\([[0-9]][[0-9]][[0-9]]\)Z/Z0\1Z/g' \ 105 B=`echo "$3" | sed -e 's/\([[0-9]]*\)/Z\1Z/g' \ 106 -e 's/Z\([[0-9]]\)Z/Z0\1Z/g' \ 107 -e 's/Z\([[0-9]][[0-9]]\)Z/Z0\1Z/g' \ 108 -e 's/Z\([[0-9]][[0-9]][[0-9]]\)Z/Z0\1Z/g' \
|
| /src/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86SchedSkylakeServer.td | 649 "VPMOVB2M(Z|Z128|Z256)rr", 650 "VPMOVD2M(Z|Z128|Z256)rr", 651 "VPMOVQ2M(Z|Z128|Z256)rr", 652 "VPMOVW2M(Z|Z128|Z256)rr")>; 698 "VPADD(B|D|Q|W)(Y|Z|Z128|Z256)rr", 705 "VPSUB(B|D|Q|W)(Y|Z|Z128|Z256)rrk", 706 "VPTERNLOGD(Z|Z128|Z256)rri", 707 "VPTERNLOGQ(Z|Z128|Z256)rri")>; 832 "VALIGND(Z|Z128|Z256)rri", 833 "VALIGNQ(Z|Z128|Z256)rri", [all …]
|
| H A D | X86SchedIceLake.td | 654 "VPMOVB2M(Z|Z128|Z256)rr", 655 "VPMOVD2M(Z|Z128|Z256)rr", 656 "VPMOVQ2M(Z|Z128|Z256)rr", 657 "VPMOVW2M(Z|Z128|Z256)rr")>; 668 "(V?)INSERTPS(Z?)rr", 669 "(V?)MOV(HL|LH)PS(Z?)rr", 711 "VPADD(B|D|Q|W)(Y|Z|Z128|Z256)rr", 713 "(V?)MOV(SD|SS)(Z?)rr", 719 "VPSUB(B|D|Q|W)(Y|Z|Z128|Z256)rrk", 720 "VPTERNLOGD(Z|Z128|Z256)rri", [all …]
|
| /src/crypto/openssl/crypto/modes/ |
| H A D | gcm128.c | 170 u128 Z; in gcm_gmult_4bit() local 179 Z.hi = Htable[nlo].hi; in gcm_gmult_4bit() 180 Z.lo = Htable[nlo].lo; in gcm_gmult_4bit() 183 rem = (size_t)Z.lo & 0xf; in gcm_gmult_4bit() 184 Z.lo = (Z.hi << 60) | (Z.lo >> 4); in gcm_gmult_4bit() 185 Z.hi = (Z.hi >> 4); in gcm_gmult_4bit() 187 Z.hi ^= rem_4bit[rem]; in gcm_gmult_4bit() 189 Z.hi ^= (u64)rem_4bit[rem] << 32; in gcm_gmult_4bit() 191 Z.hi ^= Htable[nhi].hi; in gcm_gmult_4bit() 192 Z.lo ^= Htable[nhi].lo; in gcm_gmult_4bit() [all …]
|
| /src/crypto/openssl/crypto/sm3/ |
| H A D | sm3_local.h | 91 #define FF0(X, Y, Z) (X ^ Y ^ Z) argument 92 #define GG0(X, Y, Z) (X ^ Y ^ Z) argument 94 #define FF1(X, Y, Z) ((X & Y) | ((X | Y) & Z)) argument 95 #define GG1(X, Y, Z) ((Z ^ (X & (Y ^ Z)))) argument
|
| /src/contrib/llvm-project/clang/lib/Headers/ |
| H A D | avx512ifmavlintrin.h | 27 #define _mm_madd52hi_epu64(X, Y, Z) \ argument 29 (__v2di)(Z))) 31 #define _mm256_madd52hi_epu64(X, Y, Z) \ argument 33 (__v4di)(Z))) 35 #define _mm_madd52lo_epu64(X, Y, Z) \ argument 37 (__v2di)(Z))) 39 #define _mm256_madd52lo_epu64(X, Y, Z) \ argument 41 (__v4di)(Z)))
|
| /src/share/colldef_unicode/ |
| H A D | hu_HU.UTF-8.src | 78 collating-element <D-Z> from "<D><Z>" 99 collating-element <D-D-Z> from "<D><D><Z>" 120 collating-element <D-Z-S> from "<D><Z><S>" 123 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_ACUTE> from "<D><Z><LATIN_CAPITAL_LETTER_S_WITH_… 126 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_ACUTE_AND_DOT_ABOVE> from "<D><Z><LATIN_CAPITAL_… 129 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_CIRCUMFLEX> from "<D><Z><LATIN_CAPITAL_LETTER_S_… 132 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_CARON> from "<D><Z><LATIN_CAPITAL_LETTER_S_WITH_… 135 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_CARON_AND_DOT_ABOVE> from "<D><Z><LATIN_CAPITAL_… 138 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_DOT_ABOVE> from "<D><Z><LATIN_CAPITAL_LETTER_S_W… 141 collating-element <D-Z-LATIN_CAPITAL_LETTER_S_WITH_CEDILLA> from "<D><Z><LATIN_CAPITAL_LETTER_S_WIT… [all …]
|
| /src/contrib/file/tests/ |
| H A D | matilde.arm.testfile | 14 ,�3۳ޢl�<`e�/wb��0���n�(R�! p&�K�0<&qX�?��kƳ��y���fD�.+2D��`<L{��K��E2�)5Em@Z�.�fN@… 15 …X��`<i����,J�?A�;�8�y����f��"<,�����#����c`<����'g��H咮�<^��_i�Z�A�}��9Ա�����x�p�<(… 35 ��h�y�<F\��pQ��l1ӠiI|.Su��x<���Z���<2"]�}�'��:���M��@o6+nr �J�Rs�<���~�a�_#z�B�� $�l� 51 ,�Ӆ�� ��?2����G��*Zs30<�;�Q.�����Z��v$�T�쀳�9����<�P|���a�z8��Fa_�^�IH$p("p<x�y�� p�rA�… 58 !N�g����Z��-1��<Bi>�K�ai�Zb��]ޛ ����[�Ĝ{��<:w��`@��ؠ7k���ᡳd�:�[ @<0UrBd�ɯP��.=… 65 …A������X���<�,�Ԇ�<��������3� �p����ϴu����!�0<���K�p넓�(��+O�,���ԥ�Z��<�9��a��S�����O… 68 �<��b�y�3�E�Z�mJl7�{���>s�C0<5~�8g-�A�.������ 69 …Z���E�R"�#$1�����t��@<{o�fo����a�i��Z���ζ o����#�<��f�ᅻ�54Y��<4������üߋ�<�n&!�?���… 81 …�&̌(�ބ<L��(~���߮~��"����*�}���C�1��@<d1�o4fe:+��߰FE�wp_ϡ�q H�<����Z)c�F9%����KIa�O���p�… 89 h��T���>��<($0x�zE+R��¥�%��EN��� ��X�0<8Q�`lC}3�k����Z�����[O��ɝp<H=zx%�+T����ZZ64P� �6�J…
|
| H A D | HWP97.hwp.testfile | 1 …YĔfb�`��4v����B-$�.T�x�jfC��q�}�.��������ΰD/����0�g�g�+ڻ'�� �b1�m�G�Z�&<�!�e��b��:-�ru… 5 …uYwu-E�#rY���a"�"��;>A�������7����{���$��܅y҅���\t�8���#S&O�貔������ �Z��SV��u�C�:�!g���阔�… 6 …5Cs�]��i9�����>�ҍӖ�+#��Mznb�'f|./X;G�k3�<���<�dW(�(���W9����}]=����Z$ )ЕX 0nk�S��\�*���… 12 …"�>��y0۠�d9�h���*����q��D{m��h�N\D��\��w���]`ד�Ws�؊�����ö3�r�Z8�H�$�C�G->y8�Z˃�,�N�I90FU�… 14 �bo�����Z�rb����^r~�Kο᮹u�'n�S���8&.!��K���y�p���b����@�>`����(G�9Zp~QX�Ve� 18 …'���o<r��x��&���~�%}w����8w�Px������cWç��8,}ƅ�ϸ����d�4l���'w� ���!p��Z��H-���h� �k[�M$v�;(… 22 …Z��}��e�r9٧\N�)������������nK;�Ю�*�6u���^�=?���*@����'��������b�0Wa�q�j��͊�%�b[I������ t�S… 32 ��p��b@d0�`��o`�nYk�s�@�~|r���H˧ď�tfR��j�������"��=c�Mx��˜X�{��%��6]�`q}l��M���QήD�1P�Z.0… 33 …�9���p�r������.*o�0y�v��Ӂ���5����ms��K� ��$�6��vL���[8Mn���>u�Q}��ϧ��Z�S��k��r>�W�b lu8���… 34 *Bj�G�X5��r��:�ʴ�F�˄�ǹq�Ǻ��Z���U���XG��^�̀kT-2�)���0ߗV��ܚ4ϩK9O��:�.U� R�}ؑ�i:'@�l��)��0… [all …]
|
| /src/contrib/jemalloc/doc_internal/ |
| H A D | PROFILING_INTERNALS.md | 65 That is, an allocation of size $Z$ contributes a term of $(N-1)Z^2$ to the variance. 68 …ould sample its contained allocation). The chance of an allocation of size $Z$ being sampled, then… 70 $$1-(1-\frac{1}{R})^{Z}$$ 72 and an allocation of size $Z$ contributes a term of 74 $$Z^2 \frac{(1-\frac{1}{R})^{Z}}{1-(1-\frac{1}{R})^{Z}}.$$ 78 $$Z^2 \frac{e^{-Z/R}}{1 - e^{-Z/R}} .$$ 80 …s values of $Z$. When $Z$ is small relative to $R$, we can use $e^z \approx 1 + x$, and conclude t… 82 $$Z^2 \frac{1-Z/R}{Z/R} \approx RZ.$$ 84 …en $Z$ is comparable to $R$, the variance term is near $Z^2$ (we have $\frac{e^{-Z/R}}{1 - e^{-Z/R… 93 …-Z/R}$. The framework above would suggest dividing by $1-(1-1/R)^Z$; instead, we use the fact tha… [all …]
|
| /src/crypto/openssl/test/recipes/80-test_ca_internals_data/ |
| H A D | index.txt | 1 V 990501230004Z 1000 unknown /C=AT/ST=Austria/L=OpenSSL/O=OpenSSL/OU=OpenSSL/CN=1999 2 V 200430230003Z 1001 unknown /C=AT/ST=Austria/L=OpenSSL/O=OpenSSL/OU=OpenSSL/CN=2020 3 V 490501230003Z 1002 unknown /C=AT/ST=Austria/L=OpenSSL/O=OpenSSL/OU=OpenSSL/CN=2049 4 V 20500501230003Z 1003 unknown /C=AT/ST=Austria/L=OpenSSL/O=OpenSSL/OU=OpenSSL/CN=2050
|
| /src/lib/libarchive/tests/ |
| H A D | Makefile | 347 ${PACKAGE}FILES+= test_fuzz_1.iso.Z.uu 376 ${PACKAGE}FILES+= test_archive_string_conversion.txt.Z.uu 407 ${PACKAGE}FILES+= test_compat_mac-1.tar.Z.uu 408 ${PACKAGE}FILES+= test_compat_mac-2.tar.Z.uu 411 ${PACKAGE}FILES+= test_compat_solaris_pax_sparse_1.pax.Z.uu 412 ${PACKAGE}FILES+= test_compat_solaris_pax_sparse_2.pax.Z.uu 418 ${PACKAGE}FILES+= test_compat_uudecode_large.tar.Z.uu 529 ${PACKAGE}FILES+= test_read_format_gtar_filename_cp866.tar.Z.uu 530 ${PACKAGE}FILES+= test_read_format_gtar_filename_eucjp.tar.Z.uu 531 ${PACKAGE}FILES+= test_read_format_gtar_filename_koi8r.tar.Z.uu [all …]
|