Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 1244) sorted by relevance

12345678910>>...50

/freebsd/crypto/openssl/crypto/chacha/asm/
H A Dchacha-c64xplus.pl34 @Y= ("A24","B24","A25","B25","A26","B26","A27","B27",
73 [A0] LDW *${KEYA}[0],@Y[4] ; load key
74 || [A0] LDW *${KEYB}[1],@Y[5]
75 || [A0] MVK 0x00007865,@Y[0] ; synthesize sigma
76 || [A0] MVK 0x0000646e,@Y[1]
77 [A0] LDW *${KEYA}[2],@Y[6]
78 || [A0] LDW *${KEYB}[3],@Y[7]
79 || [A0] MVKH 0x61700000,@Y[0]
80 || [A0] MVKH 0x33200000,@Y[1]
81 LDW *${KEYA}[4],@Y[8]
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCustomizableOptional.h112 const CustomizableOptional<U> &Y) {
113 if (X && Y)
114 return *X == *Y;
115 return X.has_value() == Y.has_value();
120 const CustomizableOptional<U> &Y) {
121 return !(X == Y);
126 const CustomizableOptional<U> &Y) {
127 if (X && Y)
128 return *X < *Y;
129 return X.has_value() < Y.has_value();
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/tests/
H A DNSanUnitTest.cpp32 FT Y = X; in TestFT() local
33 ASSERT_EQ(GetULPDiff<FT>(X, Y), 0); in TestFT()
34 ASSERT_EQ(GetULPDiff<FT>(-X, -Y), 0); in TestFT()
35 Y = next(Y, To); in TestFT()
36 ASSERT_EQ(GetULPDiff<FT>(X, Y), 1); in TestFT()
37 ASSERT_EQ(GetULPDiff<FT>(-X, -Y), 1); in TestFT()
38 Y = next(Y, To); in TestFT()
39 ASSERT_EQ(GetULPDiff<FT>(X, Y), 2); in TestFT()
40 ASSERT_EQ(GetULPDiff<FT>(-X, -Y), 2); in TestFT()
41 Y = next(Y, To); in TestFT()
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_gcd.c25 BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL; in bn_mod_inverse_no_branch() local
38 Y = BN_CTX_get(ctx); in bn_mod_inverse_no_branch()
52 BN_zero(Y); in bn_mod_inverse_no_branch()
143 if (!BN_add(tmp, tmp, Y)) in bn_mod_inverse_no_branch()
146 M = Y; /* keep the BIGNUM object, the value does not in bn_mod_inverse_no_branch()
148 Y = X; in bn_mod_inverse_no_branch()
162 if (!BN_sub(Y, n, Y)) in bn_mod_inverse_no_branch()
169 if (!Y->neg && BN_ucmp(Y, n) < 0) { in bn_mod_inverse_no_branch()
170 if (!BN_copy(R, Y)) in bn_mod_inverse_no_branch()
173 if (!BN_nnmod(R, Y, n, ctx)) in bn_mod_inverse_no_branch()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DVersionTuple.h123 friend bool operator==(const VersionTuple &X, const VersionTuple &Y) {
124 return X.Major == Y.Major && X.Minor == Y.Minor &&
125 X.Subminor == Y.Subminor && X.Build == Y.Build;
132 friend bool operator!=(const VersionTuple &X, const VersionTuple &Y) {
133 return !(X == Y);
140 friend bool operator<(const VersionTuple &X, const VersionTuple &Y) {
142 std::tie(Y.Major, Y
[all...]
H A DCasting.h674 template <typename... X, class Y>
675 [[nodiscard]] inline bool isa_and_present(const Y &Val) {
681 template <typename... X, class Y>
682 [[nodiscard]] inline bool isa_and_nonnull(const Y &Val) {
688 template <class X, class Y>
689 [[nodiscard]] inline auto cast_if_present(const Y &Val) {
691 return CastInfo<X, const Y>::castFailed();
696 template <class X, class Y> [[nodiscard]] inline auto cast_if_present(Y &Val) {
698 return CastInfo<X, Y>::castFailed();
703 template <class X, class Y> [[nodiscard]] inline auto cast_if_present(Y *Val) {
[all …]
H A DMathExtras.h592 constexpr T AbsoluteDifference(U X, V Y) { in AbsoluteDifference() argument
593 return X > Y ? (X - Y) : (Y - X); in AbsoluteDifference()
601 SaturatingAdd(T X, T Y, bool *ResultOverflowed = nullptr) {
605 T Z = X + Y;
606 Overflowed = (Z < X || Z < Y);
616 std::enable_if_t<std::is_unsigned_v<T>, T> SaturatingAdd(T X, T Y, T Z, in SaturatingAdd() argument
619 T XY = SaturatingAdd(X, Y, &Overflowed); in SaturatingAdd()
630 SaturatingMultiply(T X, T Y, bool *ResultOverflowed = nullptr) {
644 int Log2Z = Log2_64(X) + Log2_64(Y);
648 return X * Y;
[all …]
H A DLogicalResult.h85 FailureOr(T &&Y) : std::optional<T>(std::forward<T>(Y)) {} in FailureOr() argument
86 FailureOr(const T &Y) : std::optional<T>(Y) {} in FailureOr() argument
104 inline auto success(T &&Y) { in success() argument
105 return FailureOr<std::decay_t<T>>(std::forward<T>(Y)); in success()
/freebsd/crypto/openssh/regress/
H A Dforward-control.sh93 check_lfwd Y "default configuration"
94 check_rfwd Y "default configuration"
186 lperm_tests yes Y Y N Y Y Y
187 lperm_tests local Y N N N Y N
188 lperm_tests remote N Y N Y N Y
224 rperm_tests yes Y Y Y N Y Y
225 rperm_tests local Y N Y N Y N
226 rperm_tests remote N Y N N N Y
/freebsd/crypto/openssl/
H A DFREEBSD-upgrade12 $ git worktree add -b vendor/openssl-X.Y ../vendor/openssl-X.Y freebsd/vendor/openssl-X.Y
13 $ cd ../vendor/openssl-X.Y
18 …. && fetch https://github.com/openssl/openssl/releases/download/openssl-X.Y.Z/openssl-X.Y.Z.tar.gz)
19 … fetch https://github.com/openssl/openssl/releases/download/openssl-X.Y.Z/openssl-X.Y.Z.tar.gz.asc)
23 $ gpg --verify ../openssl-X.Y.Z.tar.gz.asc ../openssl-X.Y.Z.tar.gz
27 $ tar xf ../openssl-X.Y.Z.tar.gz -C ..
31 $ rsync --exclude .git --delete -av ../openssl-X.Y.Z/ .
39 $ git commit -m "openssl: Vendor import of OpenSSL X.Y.Z"
43 $ git tag -a -m "Tag OpenSSL X.Y.Z" vendor/openssl/X.Y.Z
47 $ git push freebsd vendor/openssl-X.Y
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp147 Value *X = Mul.getOperand(0), *Y = Mul.getOperand(1); in foldMulShl1() local
149 std::swap(X, Y); in foldMulShl1()
156 if (match(Y, m_Shl(m_One(), m_Value(Z)))) { in foldMulShl1()
157 bool PropagateNSW = HasNSW && cast<ShlOperator>(Y)->hasNoSignedWrap(); in foldMulShl1()
166 if (match(Y, m_OneUse(m_Add(m_BinOp(Shift), m_One()))) && in foldMulShl1()
181 if (match(Y, m_OneUse(m_Not(m_OneUse(m_Shl(m_AllOnes(), m_Value(Z))))))) { in foldMulShl1()
333 Value *Y; in visitMul() local
338 match(Op1, m_OneUse(m_Intrinsic<Intrinsic::abs>(m_Value(Y), m_One())))) in visitMul()
341 Builder.CreateNSWMul(X, Y), in visitMul()
346 Value *Y; in visitMul() local
[all …]
H A DInstCombineAddSub.cpp761 Value *X = nullptr, *Y = nullptr, *Z = nullptr; in checkForNegativeOperand() local
770 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1)))) in checkForNegativeOperand()
773 if (match(X, m_Xor(m_Value(Y), m_APInt(C1)))) { in checkForNegativeOperand()
776 if (match(Y, m_Or(m_Value(Z), m_APInt(C2))) && (*C2 == ~(*C1))) { in checkForNegativeOperand()
779 } else if (match(Y, m_And(m_Value(Z), m_APInt(C2))) && (*C1 == *C2)) { in checkForNegativeOperand()
793 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1)))) in checkForNegativeOperand()
799 if (match(LHS, m_Xor(m_Value(Y), m_APInt(C1)))) in checkForNegativeOperand()
801 if (match(Y, m_And(m_Value(Z), m_APInt(C2))) && *C1 == (*C2 + 1)) { in checkForNegativeOperand()
873 Value *Y; in foldAddWithConstant() local
876 if (match(Op0, m_OneUse(m_Sub(m_Value(X), m_Value(Y)))) && in foldAddWithConstant()
[all …]
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-onecolumn.pem24 Y
52 Y
54 Y
118 Y
134 Y
158 Y
162 Y
214 Y
218 Y
236 Y
[all …]
/freebsd/contrib/netbsd-tests/lib/libc/regex/data/att/
H A Drepetition.dat85 :HA#100:E X(.?){0,}Y X1234567Y (0,9)(7,8)
86 :HA#101:E X(.?){1,}Y X1234567Y (0,9)(7,8)
87 :HA#102:E X(.?){2,}Y X1234567Y (0,9)(7,8)
88 :HA#103:E X(.?){3,}Y X1234567Y (0,9)(7,8)
89 :HA#104:E X(.?){4,}Y X1234567Y (0,9)(7,8)
90 :HA#105:E X(.?){5,}Y X1234567Y (0,9)(7,8)
91 :HA#106:E X(.?){6,}Y X1234567Y (0,9)(7,8)
92 :HA#107:E X(.?){7,}Y X1234567Y (0,9)(7,8)
93 :HA#108:E X(.?){8,}Y X1234567Y (0,9)(8,8)
94 :HA#110:E X(.?){0,8}Y X1234567Y (0,9)(7,8)
[all …]
/freebsd/crypto/openssl/crypto/ec/
H A Dec2_smpl.c225 point->Y = BN_new(); in ossl_ec_GF2m_simple_point_init()
228 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GF2m_simple_point_init()
230 BN_free(point->Y); in ossl_ec_GF2m_simple_point_init()
241 BN_free(point->Y); in ossl_ec_GF2m_simple_point_finish()
249 BN_clear_free(point->Y); in ossl_ec_GF2m_simple_point_clear_finish()
262 if (!BN_copy(dest->Y, src->Y)) in ossl_ec_GF2m_simple_point_copy()
303 if (!BN_copy(point->Y, y)) in ossl_ec_GF2m_simple_point_set_affine_coordinates()
305 BN_set_negative(point->Y, 0); in ossl_ec_GF2m_simple_point_set_affine_coordinates()
342 if (!BN_copy(y, point->Y)) in ossl_ec_GF2m_simple_point_get_affine_coordinates()
400 if (!BN_copy(y0, a->Y)) in ossl_ec_GF2m_simple_add()
[all …]
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_cmdsub.sh239 ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X-b}${Y-c}d)__"'
241 ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X:-b}${Y:-c}d)__"'
243 ${TEST_SH} -c 'X=X; echo "__${X}$( X=Y; echo ${X} )${X}__"'
268 ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X-b}${Y-c}d)__"'
270 ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X:-b}${Y:-c}d)__"'
326 atf_check -s exit:0 -o inline:'X * Y = 6\n' -e empty \
327 ${TEST_SH} -c 'X=2; Y=3; echo X \* Y = $( echo $(( X * Y )) )'
328 atf_check -s exit:0 -o inline:'Y % X = 1\n' -e empty \
329 ${TEST_SH} -c 'X=2; Y=3; echo Y % X = $( echo $(( $Y % $X )) )'
339 atf_check -s exit:0 -o inline:'X * Y = 6\n' -e empty \
[all …]
/freebsd/sys/crypto/aesni/
H A Daesni_ghash.c277 __m128i H, H2, H3, H4, Y, T; in AES_GCM_encrypt() local
291 Y = _mm_loadu_si128((const __m128i *)ivec); in AES_GCM_encrypt()
292 Y = _mm_insert_epi32(Y, 0x1000000, 3); in AES_GCM_encrypt()
295 tmp2 = _mm_xor_si128(Y, KEY[0]); in AES_GCM_encrypt()
317 Y = _mm_setzero_si128(); in AES_GCM_encrypt()
322 Y = _mm_xor_si128(Y, tmp1); in AES_GCM_encrypt()
323 gfmul(Y, H, &Y); in AES_GCM_encrypt()
330 Y = _mm_xor_si128(Y, tmp1); in AES_GCM_encrypt()
331 gfmul(Y, H, &Y); in AES_GCM_encrypt()
336 Y = _mm_xor_si128(Y, tmp1); in AES_GCM_encrypt()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dvarname.mk52 V.1Y= 1Y
53 .if ${V.0x} != "0x" || ${V.1Y} != "1Y"
60 ASDZguvV.1Y= 1Y
63 .elif ${ASDZguvV.1Y} != "1Y"
H A Dvarmod-gmtime.mk23 .if ${%Y:L:gmtim=1593536400} != "%Y"
29 .if ${%Y:L:gmtime=1593536400} != "2020"
35 .if ${%Y:L:gmtimer=1593536400} != "%Y"
49 .if ${%Y:L:gmtime=${:U1593536400}} != "2020"
144 .if ${%Y:L:gmtime=100000S,1970,bad,} != "bad"
178 .if ${year=%Y month=%m day=%d:L:gmtime=1459494000} != "year=2016 month=04 day=01"
183 .if ${%Y%m%d:L:${gmtime=${:U1459494000}:L}} != "20160401"
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp227 const PathPieces &Y);
231 const PathDiagnosticControlFlowPiece &Y) { in compareControlFlow() argument
233 FullSourceLoc YSL = Y.getStartLocation().asLocation(); in compareControlFlow()
237 FullSourceLoc YEL = Y.getEndLocation().asLocation(); in compareControlFlow()
244 const PathDiagnosticMacroPiece &Y) { in compareMacro() argument
245 return comparePath(X.subPieces, Y.subPieces); in compareMacro()
249 const PathDiagnosticCallPiece &Y) { in compareCall() argument
251 FullSourceLoc Y_CEL = Y.callEnter.asLocation(); in compareCall()
255 FullSourceLoc Y_CEWL = Y.callEnterWithin.asLocation(); in compareCall()
259 FullSourceLoc Y_CRL = Y.callReturn.asLocation(); in compareCall()
[all …]
/freebsd/crypto/openssl/crypto/sm3/
H A Dsm3_local.h45 #define FF0(X,Y,Z) (X ^ Y ^ Z) argument
46 #define GG0(X,Y,Z) (X ^ Y ^ Z) argument
48 #define FF1(X,Y,Z) ((X & Y) | ((X | Y) & Z)) argument
49 #define GG1(X,Y,Z) ((Z ^ (X & (Y ^ Z)))) argument
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dsmmintrin.h98 #define _mm_ceil_ss(X, Y) _mm_round_ss((X), (Y), _MM_FROUND_CEIL) argument
123 #define _mm_ceil_sd(X, Y) _mm_round_sd((X), (Y), _MM_FROUND_CEIL) argument
182 #define _mm_floor_ss(X, Y) _mm_round_ss((X), (Y), _MM_FROUND_FLOOR) argument
207 #define _mm_floor_sd(X, Y) _mm_round_sd((X), (Y), _MM_FROUND_FLOOR) argument
280 #define _mm_round_ss(X, Y, M) \ argument
281 ((__m128)__builtin_ia32_roundss((__v4sf)(__m128)(X), (__v4sf)(__m128)(Y), \
355 #define _mm_round_sd(X, Y, M) \ argument
356 ((__m128d)__builtin_ia32_roundsd((__v2df)(__m128d)(X), (__v2df)(__m128d)(Y), \
596 #define _mm_dp_ps(X, Y, M) \ argument
597 ((__m128)__builtin_ia32_dpps((__v4sf)(__m128)(X), (__v4sf)(__m128)(Y), (M)))
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dgcc_qadd.c49 double Y; in __gcc_qadd() local
62 Y = (A + B) - W; in __gcc_qadd()
63 Y += w; in __gcc_qadd()
66 w = t + Y; in __gcc_qadd()
68 w = T + Y; in __gcc_qadd()
70 dst.s.hi = Y = W + w; in __gcc_qadd()
71 dst.s.lo = (W - Y) + w; in __gcc_qadd()
H A Dgcc_qsub.c49 double Y; in __gcc_qsub() local
62 Y = (A + B) - W; in __gcc_qsub()
63 Y += w; in __gcc_qsub()
66 w = t + Y; in __gcc_qsub()
68 w = T + Y; in __gcc_qsub()
70 dst.s.hi = Y = W + w; in __gcc_qsub()
71 dst.s.lo = (W - Y) + w; in __gcc_qsub()
/freebsd/contrib/file/tests/
H A Dmatilde.arm.testfile6 �%Vйa����@<x@m1�A�"J�)��C�.t4�c��d0<zg���Y*˴fRMg�J5o��;�κ�h�<< Pg����*�0�*=�K|�K~��%…
9 !�:���=K����[��<Ɖ�lH��!L��-��I��w�9:y��<�U'�ԫ�Lc�\vyY>�Ԫ�ϧ�4p<&@i�~#�������)J$��
15 Ѐm�T֖,E���<4{@�U���|B����А��0&��Y�lCZ�<z�����'h(kZ�k)վ` � ���~�<w@~� ��b9�w��⎭������\����…
41 ��<�v�慥�5�Ir�X�<(���\�Y�~'��$�7*��,�*�!!����< �)�6�-j��+�G�� ����S���M>�<&Cc�H y�
55 …Bũ��<����4>�!��8�'�]l�9���g̗U�Y�R� <�v���6����O��dHc��\|�Βf��0<6q5:����-i�tY^��d���)H-��^΀<…
64 �h��W B ��<($@g����ݚK�8ؿ�x /w��4�+k��<6g2�`��*�z�q�I�����0 ,Y* ��<�8a+^����R�#����a�����…
65 ����ĩ����/���a6[o�<(醿y��<��Wp�|��)�6�1š �Lp<ϡ�����B%��� �W,���Wi��k��<�9�����(�, Y��Sʶ�n…
66 a,k�3��k@2�C��?Ӊs���h�<����x��K��L�7K�L!�!����O�<�A�� �Y�v�/���s~�C` �c&�<d��T��)h;�…
91 �<(E�Y���Cݑ�j%ޚ�诺��k8�qS<RA�����DQ����Df.��|��qE�?0< JY�M��+p'�7�M�<�+&���qP{�<D@$Y�y�…
97 ��U)�� /��@D���<TS�Y�������j0Q�\���NP��Z����<F[!*�����\�~EEJ9 �`17ĉ�}N�<H@oX~���aY�]�Y#<h�…
[all …]

12345678910>>...50