Home
last modified time | relevance | path

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

12345678910>>...112

/third_party/node/deps/openssl/openssl/crypto/chacha/asm/
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 …]
/third_party/openssl/crypto/chacha/asm/
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 …]
/third_party/ffmpeg/libavcodec/
Dulti.c144 static void ulti_grad(AVFrame *frame, int x, int y, uint8_t *Y, int chroma, int angle) in ulti_grad() argument
150 t = Y[0]; in ulti_grad()
151 Y[0] = Y[3]; in ulti_grad()
152 Y[3] = t; in ulti_grad()
153 t = Y[1]; in ulti_grad()
154 Y[1] = Y[2]; in ulti_grad()
155 Y[2] = t; in ulti_grad()
159 Luma[0] = Y[0]; Luma[1] = Y[1]; Luma[2] = Y[2]; Luma[3] = Y[3]; in ulti_grad()
160 Luma[4] = Y[0]; Luma[5] = Y[1]; Luma[6] = Y[2]; Luma[7] = Y[3]; in ulti_grad()
161 Luma[8] = Y[0]; Luma[9] = Y[1]; Luma[10] = Y[2]; Luma[11] = Y[3]; in ulti_grad()
[all …]
/third_party/lwip/src/netif/ppp/polarssl/
Ddes.c255 #define DES_IP(X,Y) \ argument
257 T = ((X >> 4) ^ Y) & 0x0F0F0F0F; Y ^= T; X ^= (T << 4); \
258 T = ((X >> 16) ^ Y) & 0x0000FFFF; Y ^= T; X ^= (T << 16); \
259 T = ((Y >> 2) ^ X) & 0x33333333; X ^= T; Y ^= (T << 2); \
260 T = ((Y >> 8) ^ X) & 0x00FF00FF; X ^= T; Y ^= (T << 8); \
261 Y = ((Y << 1) | (Y >> 31)) & 0xFFFFFFFF; \
262 T = (X ^ Y) & 0xAAAAAAAA; Y ^= T; X ^= T; \
269 #define DES_FP(X,Y) \ argument
272 T = (X ^ Y) & 0xAAAAAAAA; X ^= T; Y ^= T; \
273 Y = ((Y << 31) | (Y >> 1)) & 0xFFFFFFFF; \
[all …]
/third_party/mesa3d/src/intel/isl/
Disl_format.c61 #define Y 0 macro
105 SF( Y, 50, x, x, Y, Y, Y, Y, x, 70, 90, 90, x, R32G32B32A32_FLOAT)
106 SF( Y, x, x, x, Y, x, Y, Y, x, 70, 90, 90, x, R32G32B32A32_SINT)
107 SF( Y, x, x, x, Y, x, Y, Y, x, 70, 90, 90, x, R32G32B32A32_UINT)
108 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R32G32B32A32_UNORM)
109 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R32G32B32A32_SNORM)
110 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R64G64_FLOAT)
111 SF( Y, 50, x, x, 100, 100, x, x, x, x, x, 100, x, R32G32B32X32_FLOAT)
112 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R32G32B32A32_SSCALED)
113 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R32G32B32A32_USCALED)
[all …]
/third_party/mbedtls/library/
Ddes.c225 #define DES_IP(X, Y) \ argument
228 T = (((X) >> 4) ^ (Y)) & 0x0F0F0F0F; (Y) ^= T; (X) ^= (T << 4); \
229 T = (((X) >> 16) ^ (Y)) & 0x0000FFFF; (Y) ^= T; (X) ^= (T << 16); \
230 T = (((Y) >> 2) ^ (X)) & 0x33333333; (X) ^= T; (Y) ^= (T << 2); \
231 T = (((Y) >> 8) ^ (X)) & 0x00FF00FF; (X) ^= T; (Y) ^= (T << 8); \
232 (Y) = (((Y) << 1) | ((Y) >> 31)) & 0xFFFFFFFF; \
233 T = ((X) ^ (Y)) & 0xAAAAAAAA; (Y) ^= T; (X) ^= T; \
240 #define DES_FP(X, Y) \ argument
244 T = ((X) ^ (Y)) & 0xAAAAAAAA; (X) ^= T; (Y) ^= T; \
245 (Y) = (((Y) << 31) | ((Y) >> 1)) & 0xFFFFFFFF; \
[all …]
/third_party/libinput/test/
Dcheck-double-macros.h38 #define _ck_assert_double_eq(X,Y, epsilon) \ argument
41 double _ck_y = Y; \
43 "Assertion '" #X " == " #Y \
44 "' failed: "#X"==%f, "#Y"==%f", \
49 #define _ck_assert_double_ne(X,Y, epsilon) \ argument
52 double _ck_y = Y; \
54 "Assertion '" #X " != " #Y \
55 "' failed: "#X"==%f, "#Y"==%f", \
60 #define ck_assert_double_eq(X, Y) _ck_assert_double_eq(X, Y, CK_DOUBLE_EQ_EPSILON) argument
61 #define ck_assert_double_eq_tol(X, Y, tol) _ck_assert_double_eq(X, Y, tol) argument
[all …]
/third_party/typescript/tests/baselines/reference/
DnameCollision.js23 export module Y {
24 var Y = 13; variable
27 var Y = 12;
33 module Y.Y {
34 export enum Y {
73 var Y;
75 var Y = 13;
79 var Y = 12;
82 })(Y = X_1.Y || (X_1.Y = {}));
84 var Y; variable
[all …]
DdeclarationEmitNameConflicts2.types2 module X.Y.base {
4 >Y : typeof Y
23 module X.Y.base.Z {
25 >Y : typeof Y
29 export var f = X.Y.base.f; // Should be base.f
31 >X.Y.base.f : () => void
32 >X.Y.base : typeof base
33 >X.Y : typeof Y
35 >Y : typeof Y
39 export var C = X.Y.base.C; // Should be base.C
[all …]
DdeclarationEmitNameConflicts2.js2 module X.Y.base {
11 module X.Y.base.Z {
12 export var f = X.Y.base.f; // Should be base.f
13 export var C = X.Y.base.C; // Should be base.C
14 export var M = X.Y.base.M; // Should be base.M
15 export var E = X.Y.base.E; // Should be base.E
21 var Y;
22 (function (Y) { argument
39 })(base = Y.base || (Y.base = {}));
40 })(Y = X.Y || (X.Y = {}));
[all …]
DtypeParameterUsedAsTypeParameterConstraint2.types13 function baz<X extends W, Y extends V>(a: X, b: Y): T {
14 >baz : <X extends W, Y extends V>(a: X, b: Y) => T
16 >b : Y
37 function baz<X extends W, Y extends V>(a: X, b: Y): T {
38 >baz : <X extends W, Y extends V>(a: X, b: Y) => T
40 >b : Y
55 …xtends T, W extends U>() { var g = function <X extends W, Y extends V>(a: X, b: Y): T { …
62 var g = function <X extends W, Y extends V>(a: X, b: Y): T {
63 >g : <X extends W, Y extends V>(a: X, b: Y) => T
64 …ion <X extends W, Y extends V>(a: X, b: Y): T { x = y; return y; } : …
[all …]
DlocalTypes5.types3 >foo : <A>() => X.m<number, boolean>.(Anonymous function)<Date>.Y<string>
9 >m : <B, C>() => (Anonymous function)<Date>.Y<string>
12 … class Y<E> { } return new Y<string>(); })<Da…
13 …on <D>() { class Y<E> { } return new Y<string>(); …
14 …on <D>() { class Y<E> { } return new Y<string>(); …
16 class Y<E> {
17 >Y : Y<E>
19 return new Y<string>();
20 >new Y<string>() : Y<string>
21 >Y : typeof Y
[all …]
DClassAndModuleWithSameNameAndCommonRoot.types2 module X.Y {
4 >Y : typeof Y
36 module X.Y {
38 >Y : typeof Y
54 var cl = new X.Y.Point(1,1);
55 >cl : X.Y.Point
56 >new X.Y.Point(1,1) : X.Y.Point
57 >X.Y.Point : typeof X.Y.Point
58 >X.Y : typeof X.Y
60 >Y : typeof X.Y
[all …]
DClassAndModuleWithSameNameAndCommonRootES6.types2 module X.Y {
4 >Y : typeof Y
36 module X.Y {
38 >Y : typeof Y
54 var cl = new X.Y.Point(1,1);
55 >cl : X.Y.Point
56 >new X.Y.Point(1,1) : X.Y.Point
57 >X.Y.Point : typeof X.Y.Point
58 >X.Y : typeof X.Y
60 >Y : typeof X.Y
[all …]
DdeclarationEmitNameConflicts2.symbols2 module X.Y.base {
4 >Y : Symbol(Y, Decl(declarationEmitNameConflicts2.ts, 0, 9), Decl(declarationEmitNameConflicts2.ts,…
23 module X.Y.base.Z {
25 >Y : Symbol(Y, Decl(declarationEmitNameConflicts2.ts, 0, 9), Decl(declarationEmitNameConflicts2.ts,…
29 export var f = X.Y.base.f; // Should be base.f
31 >X.Y.base.f : Symbol(f, Decl(declarationEmitNameConflicts2.ts, 0, 17))
32 >X.Y.base : Symbol(base, Decl(declarationEmitNameConflicts2.ts, 0, 11), Decl(declarationEmitNameCon…
33 >X.Y : Symbol(Y, Decl(declarationEmitNameConflicts2.ts, 0, 9), Decl(declarationEmitNameConflicts2.t…
35 >Y : Symbol(Y, Decl(declarationEmitNameConflicts2.ts, 0, 9), Decl(declarationEmitNameConflicts2.ts,…
39 export var C = X.Y.base.C; // Should be base.C
[all …]
DparserGenericsInTypeContexts2.symbols2 class C extends A<X<T>, Y<Z<T>>> implements B<X<T>, Y<Z<T>>> {
6 >Y : Symbol(Y)
11 >Y : Symbol(Y)
16 var v1: C<X<T>, Y<Z<T>>>;
21 >Y : Symbol(Y)
25 var v2: D<X<T>, Y<Z<T>>> = null;
30 >Y : Symbol(Y)
34 var v3: E.F<X<T>, Y<Z<T>>>;
40 >Y : Symbol(Y)
44 var v4: G.H.I<X<T>, Y<Z<T>>>;
[all …]
DtypeParameterUsedAsTypeParameterConstraint4.types46 function baz<X extends W, Y extends V>(a: X, b: Y): T {
47 >baz : <X extends W, Y extends V>(a: X, b: Y) => T
49 >b : Y
67 function bar<V extends T, W extends U>(): Y { // error
68 >bar : <V extends T, W extends U>() => Y
70 function baz<X extends W, Y extends V>(a: X, b: Y): T {
71 >baz : <X extends W, Y extends V>(a: X, b: Y) => T
73 >b : Y
88 …ion bar<V extends T, W extends U>(r: X, s: Y) { // error var g = <X extends W, Y extends V>…
92 function bar<V extends T, W extends U>(r: X, s: Y) { // error
[all …]
DClassAndModuleWithSameNameAndCommonRootES6.js4 module X.Y { variable in module.Y
16 module X.Y {
24 var cl = new X.Y.Point(1,1);
25 var cl = X.Y.Point.Origin; // error not expected here same as bug 83996 ?
46 var Y;
47 (function (Y) { argument
54 Y.Point = Point;
55 })(Y = X.Y || (X.Y = {}));
60 var Y;
61 (function (Y) { argument
[all …]
DClassAndModuleWithSameNameAndCommonRoot.js4 module X.Y { variable in module.Y
16 module X.Y {
24 var cl = new X.Y.Point(1,1);
25 var cl = X.Y.Point.Origin; // error not expected here same as bug 83996 ?
46 var Y;
47 (function (Y) { argument
55 Y.Point = Point;
56 })(Y = X.Y || (X.Y = {}));
61 var Y;
62 (function (Y) { argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DCasting.h141 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) {
142 return isa_impl_wrap<X, const Y,
143 typename simplify_type<const Y>::SimpleType>::doit(Val);
149 template <class X, class Y>
150 LLVM_NODISCARD inline bool isa_and_nonnull(const Y &Val) {
246 template <class X, class Y>
247 inline typename std::enable_if<!is_simple_type<Y>::value,
248 typename cast_retty<X, const Y>::ret_type>::type
249 cast(const Y &Val) {
252 X, const Y, typename simplify_type<const Y>::SimpleType>::doit(Val);
[all …]
/third_party/curl/tests/libtest/
Dtest.h131 #define exe_easy_init(A,Y,Z) do { \ argument
133 fprintf(stderr, "%s:%d curl_easy_init() failed\n", (Y), (Z)); \
141 #define chk_easy_init(A,Y,Z) do { \ argument
142 exe_easy_init((A), (Y), (Z)); \
152 #define exe_multi_init(A,Y,Z) do { \ argument
154 fprintf(stderr, "%s:%d curl_multi_init() failed\n", (Y), (Z)); \
162 #define chk_multi_init(A,Y,Z) do { \ argument
163 exe_multi_init((A), (Y), (Z)); \
173 #define exe_easy_setopt(A,B,C,Y,Z) do { \ argument
178 (Y), (Z), (int)ec, curl_easy_strerror(ec)); \
[all …]
/third_party/mesa3d/src/gallium/drivers/nouveau/ci/
Dnouveau-gm206-fails.txt189 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 0- Grid: false,Fail
190 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 0- Grid: true,Fail
191 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 1- Grid: false,Fail
192 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 1- Grid: true,Fail
193 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 2- Grid: false,Fail
194 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 2- Grid: true,Fail
195 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 3- Grid: false,Fail
196 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 3- Grid: true,Fail
197 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 4- Grid: false,Fail
198 spec@arb_sample_locations@test@MSAA: 1- X: 0- Y: 4- Grid: true,Fail
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DCasting.h131 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) {
132 return isa_impl_wrap<X, const Y,
133 typename simplify_type<const Y>::SimpleType>::doit(Val);
218 template <class X, class Y>
219 inline typename std::enable_if<!is_simple_type<Y>::value,
220 typename cast_retty<X, const Y>::ret_type>::type
221 cast(const Y &Val) {
224 X, const Y, typename simplify_type<const Y>::SimpleType>::doit(Val);
227 template <class X, class Y>
228 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
[all …]
/third_party/node/deps/v8/src/bigint/
Dmul-karatsuba.cc69 void KaratsubaSubtractionHelper(RWDigits result, Digits X, Digits Y, in KaratsubaSubtractionHelper() argument
72 Y.Normalize(); in KaratsubaSubtractionHelper()
75 if (!GreaterThanOrEqual(X, Y)) { in KaratsubaSubtractionHelper()
77 std::swap(X, Y); in KaratsubaSubtractionHelper()
79 for (; i < Y.len(); i++) { in KaratsubaSubtractionHelper()
80 result[i] = digit_sub2(X[i], Y[i], borrow, &borrow); in KaratsubaSubtractionHelper()
91 void ProcessorImpl::MultiplyKaratsuba(RWDigits Z, Digits X, Digits Y) { in MultiplyKaratsuba() argument
92 DCHECK(X.len() >= Y.len()); in MultiplyKaratsuba()
93 DCHECK(Y.len() >= kKaratsubaThreshold); in MultiplyKaratsuba()
94 DCHECK(Z.len() >= X.len() + Y.len()); in MultiplyKaratsuba()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DOptional.h154 bool operator==(const Optional<T> &X, const Optional<U> &Y) {
155 if (X && Y)
156 return *X == *Y;
157 return X.hasValue() == Y.hasValue();
161 bool operator!=(const Optional<T> &X, const Optional<U> &Y) {
162 return !(X == Y);
166 bool operator<(const Optional<T> &X, const Optional<U> &Y) {
167 if (X && Y)
168 return *X < *Y;
169 return X.hasValue() < Y.hasValue();
[all …]

12345678910>>...112