Home
last modified time | relevance | path

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

12345678910>>...122

/external/mesa3d/src/intel/isl/
Disl_format.c49 #define Y 0 macro
90 SF( Y, 50, x, x, Y, Y, Y, Y, x, 90, R32G32B32A32_FLOAT)
91 SF( Y, x, x, x, Y, x, Y, Y, x, 90, R32G32B32A32_SINT)
92 SF( Y, x, x, x, Y, x, Y, Y, x, 90, R32G32B32A32_UINT)
93 SF( x, x, x, x, x, x, Y, x, x, x, R32G32B32A32_UNORM)
94 SF( x, x, x, x, x, x, Y, x, x, x, R32G32B32A32_SNORM)
95 SF( x, x, x, x, x, x, Y, x, x, x, R64G64_FLOAT)
96 SF( Y, 50, x, x, x, x, x, x, x, x, R32G32B32X32_FLOAT)
97 SF( x, x, x, x, x, x, Y, x, x, x, R32G32B32A32_SSCALED)
98 SF( x, x, x, x, x, x, Y, x, x, x, R32G32B32A32_USCALED)
[all …]
/external/mesa3d/src/glx/
Dglxextensions.c45 #define Y 1 macro
135 { GLX(ARB_create_context), VER(0,0), Y, N, N, N },
136 { GLX(ARB_create_context_profile), VER(0,0), Y, N, N, N },
137 { GLX(ARB_create_context_robustness), VER(0,0), Y, N, N, N },
138 { GLX(ARB_fbconfig_float), VER(0,0), Y, Y, N, N },
139 { GLX(ARB_framebuffer_sRGB), VER(0,0), Y, Y, N, N },
140 { GLX(ARB_get_proc_address), VER(1,4), Y, N, Y, N },
141 { GLX(ARB_multisample), VER(1,4), Y, Y, N, N },
143 { GLX(EXT_import_context), VER(0,0), Y, Y, N, N },
144 { GLX(EXT_visual_info), VER(0,0), Y, Y, N, N },
[all …]
/external/clang/test/CodeGenCXX/
Dmangle-ms-back-references-pr13207.cpp3 template<class X, class Y, class Z>
20 template<class X, class Y, class Z>
26 template<class X, class Y>
65 template<class T> class Y {}; class
70 template<class T> class Y {}; class
73 void foo5(NA::Y<NB::Y<NA::Y<NB::Y<NA::X> > > > arg) {} in foo5()
76 void foo11(NA::Y<NA::X>, NB::Y<NA::X>) {} in foo11()
79 void foo112(NA::Y<NA::X>, NB::Y<NB::X>) {} in foo112()
82 void foo22(NA::Y<NB::Y<NA::X> >, NB::Y<NA::Y<NA::X> >) {} in foo22()
94 template<class X, class Y>
[all …]
Dmicrosoft-abi-vtables-virtual-inheritance.cpp62 struct Y : X, A { }; struct
65 struct Z : virtual Y {
112 struct Y: virtual X { struct
113 Y();
123 Y::Y() {} in Y() function in Test3::Y
162 struct Y : virtual X { struct
180 Y y;
181 void use(Y *obj) { obj->h(); } in use()
206 struct Y : virtual X { struct
207 Y();
[all …]
/external/boringssl/src/crypto/fipsmodule/ecdsa/
Decdsa_verify_tests.txt10 Y = 0a8c3a2f909f212c84441b8c0030529cbd731304d86f771d89d7cc29
17 Y = 7a76734a0afead9e5e4aba65f1ae353d6445b1689b5ea402de5f9af9
25 Y = 0b7ac24ea9092d03b28904d89714b517be023235abc9cffa297cf4ad
33 Y = 3d67c177ca7cc12c7b05a3bf55fb78549ef5400a566efe8ae3580c9f
40 Y = 4545937caf1878fbacc34ca38a0e5e1f6ad2b25ddd796d06c8d12351
48 Y = 9207cef64b7c2ed181c57337001f45f1e800e0d1bc8adac296e454b5
56 Y = 166c7b70e98fa11ac361d827557676ec07e553370a462b4fe502dedb
64 Y = fe8ec3d660cfa3f3e09e5cfc2c3298d4de2f464416deb5b4a27ac062
72 Y = d1aa8418f992283c5b6bb0461f05dc9103050dc55e0265e1c99b935d
80 Y = be505338108f8d3f0ee80aefa304d51dd4a4035477934a98a6111403
[all …]
Decdsa_sign_tests.txt11 Y = f5cc733b17decc806ef1df861a42505d0af9ef7c3df3959b8dfc6669
20 Y = e9e79578f8988b168edff1a8b34a5ed9598cc20acd1f0aed36715d88
29 Y = e8373ab7190890326aac4aacca3eba89e15d1086a05434dd033fd3f3
38 Y = 5d8b6764f28c8163a12855a5c266efeb9388df4994b85a8b4f1bd3bc
47 Y = cb64fe462d025ae2a1394746bdbf8251f7ca5a1d6bb13e0edf6b7b09
56 Y = cde21c9c7c6590ba300715a7adac278385a5175b6b4ea749c4b6a681
65 Y = c90ac83276b2fa3757b0f226cd7360a313bc96fd8329c76a7306cc7d
74 Y = de9d253935b09617a1655c42d385bf48504e06fa386f5fa533a21dcb
83 Y = a17db03b9877d1b6328329061ea67aec5a38a884362e9e5b7d7642dc
92 Y = c764ca9fc1b0cc2233fa57bdcfedaab0131fb7b5f557d6ca57f4afe0
[all …]
/external/clang/test/SemaTemplate/
Dnested-template.cpp35 template<typename Y>
38 void f(X, Y);
42 template<typename Y>
43 void Outer<X>::Inner0<Y>::f(X, Y) { in f() argument
47 template<typename Y>
48 struct Outer<X>::Inner1<Y>::ReallyInner {
49 static Y value3;
51 void g(X, Y);
55 template<typename Y>
56 void Outer<X>::Inner1<Y>::ReallyInner::g(X, Y) { in g() argument
[all …]
/external/libvncserver/webclients/novnc/include/web-socket-js/
Dswfobject.js4Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=… argument
/external/clang/test/CXX/class.access/class.friend/
Dp9-cxx0x.cpp15 class Y { class
26 template <class T> class Y { class
33 template <class T> class Y;
37 friend class Y<int>;
40 template <class T> class Y { class
44 template class Y<int>; variable
49 template <class T> class Y;
53 friend class Y<int>;
56 template <class T> class Y { class
60 template class Y<float>; // expected-note {{in instantiation}} variable
[all …]
/external/boringssl/src/crypto/ecdh/
Decdh_tests.txt9 Y = 4a68a1c2b0fb22930d120555c1ece50ea98dea8407f71be36efac0de
17 Y = 66897351454f927a309b269c5a6d31338be4c19a5acfc32cf656f45c
25 Y = 43e9d421e1486ae5893bfd23c210e5c140d7c6b1ada59d842c9a98de
33 Y = 61e8a5cd79615203b6d89e9496f9e236fe3b6be8731e743d615519c6
41 Y = 748e095368f62e1d364edd461719793b404adbdaacbcadd88922ff37
49 Y = 5bea503473c5eaef9552d42c40b1f2f7ca292733b255b9bbe1b12337
57 Y = 3524950902b1510bdc987d860afc27ad871ceaea66935abd3c0a99a8
65 Y = a963897ae906c10a055eeadb97ffdd6f748d3e5621e5fff304e48ba7
73 Y = b4c8c123673197875c0bd14ed097606d330fba2b9200ef65a44764d3
81 Y = 596afefcdd640d29635015b89bdddd1f8c2723686d332e7a06ca8799
[all …]
/external/clang/test/CXX/except/except.spec/
Dp5-delayed.cpp3 struct A { struct X { virtual ~X() throw(Y); }; struct Y : X {}; }; struct
4 struct B { struct X { virtual void f() throw(Y); }; struct Y : X { void f() throw(Y); }; }; struct
5 struct C { struct X { virtual void f() throw(Y); }; struct Y : X { void f() throw(); }; }; struct
6 struct D { struct X { virtual void f() throw(Y); }; struct Y : X { void f() noexcept; }; }; struct
7 struct E { struct Y; struct X { virtual Y &operator=(const Y&) throw(Y); }; struct Y : X {}; }; struct
10 virtual void f() throw(Y); // expected-note {{here}}
12 struct Y : X { struct
/external/curl/tests/libtest/
Dtest.h127 #define exe_easy_init(A,Y,Z) do { \ argument
129 fprintf(stderr, "%s:%d curl_easy_init() failed\n", (Y), (Z)); \
137 #define chk_easy_init(A,Y,Z) do { \ argument
138 exe_easy_init((A), (Y), (Z)); \
148 #define exe_multi_init(A,Y,Z) do { \ argument
150 fprintf(stderr, "%s:%d curl_multi_init() failed\n", (Y), (Z)); \
158 #define chk_multi_init(A,Y,Z) do { \ argument
159 exe_multi_init((A), (Y), (Z)); \
169 #define exe_easy_setopt(A,B,C,Y,Z) do { \ argument
174 (Y), (Z), (int)ec, curl_easy_strerror(ec)); \
[all …]
/external/clang/test/SemaCXX/
Dcxx0x-defaulted-functions.cpp69 struct Y;
70 struct X { X(); X(const Y&); };
71 struct Y { pair<X> p; }; struct
137 struct Y { struct
138 Y() = default;
139 Y(const Y&) = default;
140 Y(Y&&) = default;
141 Y &operator=(const Y&) = default;
142 Y &operator=(Y&&) = default;
143 ~Y() = default;
[all …]
/external/llvm/include/llvm/Support/
DCasting.h131 template <class X, class Y>
132 LLVM_ATTRIBUTE_UNUSED_RESULT inline bool isa(const Y &Val) {
133 return isa_impl_wrap<X, const Y,
134 typename simplify_type<const Y>::SimpleType>::doit(Val);
219 template <class X, class Y>
220 inline typename std::enable_if<!is_simple_type<Y>::value,
221 typename cast_retty<X, const Y>::ret_type>::type
222 cast(const Y &Val) {
225 X, const Y, typename simplify_type<const Y>::SimpleType>::doit(Val);
228 template <class X, class Y>
[all …]
/external/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 …]
/external/clang/test/CodeGen/
D2004-06-17-UnorderedBuiltins.c5 void TestF(float X, float Y) { in TestF() argument
6 A = __builtin_isgreater(X, Y); in TestF()
7 B = __builtin_isgreaterequal(X, Y); in TestF()
8 C = __builtin_isless(X, Y); in TestF()
9 D = __builtin_islessequal(X, Y); in TestF()
10 E = __builtin_islessgreater(X, Y); in TestF()
11 F = __builtin_isunordered(X, Y); in TestF()
13 H = __builtin_isunordered(X, Y); in TestF()
15 void TestD(double X, double Y) { in TestD() argument
16 A = __builtin_isgreater(X, Y); in TestD()
[all …]
D2004-06-17-UnorderedCompares.c6 void TestF(float X, float Y) { in TestF() argument
7 A = __builtin_isgreater(X, Y); in TestF()
8 B = __builtin_isgreaterequal(X, Y); in TestF()
9 C = __builtin_isless(X, Y); in TestF()
10 D = __builtin_islessequal(X, Y); in TestF()
11 E = __builtin_islessgreater(X, Y); in TestF()
12 F = __builtin_isunordered(X, Y); in TestF()
14 void TestD(double X, double Y) { in TestD() argument
15 A = __builtin_isgreater(X, Y); in TestD()
16 B = __builtin_isgreaterequal(X, Y); in TestD()
[all …]
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/
D2004-11-27-SetCCForCastLargerAndConstant.ll3 ; %Y = sext i8 %X to i32
4 ; %C = icmp ult i32 %Y, 1024
15 %Y = sext i8 %SB to i32 ; <i32> [#uses=1]
16 %C = icmp ult i32 %Y, 1024 ; <i1> [#uses=1]
23 %Y = sext i8 %SB to i32 ; <i32> [#uses=1]
24 %C = icmp slt i32 %Y, 1024 ; <i1> [#uses=1]
30 %Y = sext i8 %SB to i32 ; <i32> [#uses=1]
31 %C = icmp slt i32 %Y, -1024 ; <i1> [#uses=1]
37 %Y = sext i8 %SB to i32
38 %C = icmp ult i32 %Y, 17
[all …]
Dconstant-fold-gep.ll9 @Y = internal global [3 x %struct.X] zeroinitializer
12 ; CHECK: store i32 1, i32* getelementptr inbounds ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 0)…
13 store i32 1, i32* getelementptr ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 0), align 4
14 ; CHECK: store i32 1, i32* getelementptr inbounds ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 1)…
15 store i32 1, i32* getelementptr ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 1), align 4
16 ; CHECK: store i32 1, i32* getelementptr inbounds ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 2)…
17 store i32 1, i32* getelementptr ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 2), align 4
18 ; CHECK: store i32 1, i32* getelementptr inbounds ([3 x %struct.X]* @Y, i64 0, i64 0, i32 1, i64 0)…
19 store i32 1, i32* getelementptr ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 3), align 4
20 ; CHECK: store i32 1, i32* getelementptr inbounds ([3 x %struct.X]* @Y, i64 0, i64 0, i32 1, i64 1)…
[all …]
/external/ImageMagick/PerlMagick/t/reference/filter/
DEqualize.miff18 …& 8*Q'A8/g]3sW3n@5yI7�c]�h�y@�`8���Ɉ�܁��`��`��}��s8�s&�s.�y&�s&�n@�g.�g�Y�n8�nc�yh��y���.8. *…
21 ….8*Q" .'08)08-A83YI/�o=�hfg&�I��h���ɋ��`��n��}Q�y�s8�n8�s.�n�n.�g8�`8�Y@�sI��W�yy������%so#%…
27 8W% ]#W'@+I+8c,Qr50]Y8I�gQ�no�}c��v����sc�s.�g&�Y8�`8�Y.�II|Q@|sv�����������܈��m��;��%yc
35YpnpA.nI8vyh���������t��v����p��Q��O��9ògQ.�I�8?��z��v��z��|��x��z��i��6��A]…
36Y�n.�gW�YW�I�Q&�s]� �%.�A@�&��*�%�I.�srDž��}��nc�I�g8���卪鈪��������������������������������…
/external/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 …]
/external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
Dmem_update.ll9 %Y = getelementptr i32* %X, i32 4
10 %A = load i32* %Y
12 ret i32* %Y
16 %Y = getelementptr i32* %X, i32 4
17 %A = load i32* %Y
19 ret i32* %Y
23 %Y = getelementptr i16* %X, i32 4
24 %A = load i16* %Y
27 ret i16* %Y
31 %Y = getelementptr i16* %X, i32 4
[all …]
/external/llvm/test/CodeGen/PowerPC/
Dmem_update.ll9 %Y = getelementptr i32, i32* %X, i32 4
10 %A = load i32, i32* %Y
12 ret i32* %Y
16 %Y = getelementptr i32, i32* %X, i32 4
17 %A = load i32, i32* %Y
19 ret i32* %Y
23 %Y = getelementptr i16, i16* %X, i32 4
24 %A = load i16, i16* %Y
27 ret i16* %Y
31 %Y = getelementptr i16, i16* %X, i32 4
[all …]
/external/ImageMagick/MagickCore/
Dgem-private.h77 double *X,double *Y,double *Z) in ConvertLabToXYZ() argument
85 assert(Y != (double *) NULL); in ConvertLabToXYZ()
103 *Y=D65Y*y; in ConvertLabToXYZ()
108 double *X,double *Y,double *Z) in ConvertLuvToXYZ() argument
111 assert(Y != (double *) NULL); in ConvertLuvToXYZ()
114 *Y=(double) pow((L+16.0)/116.0,3.0); in ConvertLuvToXYZ()
116 *Y=L/CIEK; in ConvertLuvToXYZ()
117 *X=((*Y*((39.0*L/(v+13.0*L*(9.0*D65Y/(D65X+15.0*D65Y+3.0*D65Z))))-5.0))+ in ConvertLuvToXYZ()
118 5.0*(*Y))/((((52.0*L/(u+13.0*L*(4.0*D65X/(D65X+15.0*D65Y+3.0*D65Z))))-1.0)/ in ConvertLuvToXYZ()
121 5.0*(*Y); in ConvertLuvToXYZ()
[all …]
/external/clang/test/CXX/expr/expr.unary/expr.unary.op/
Dp3.cpp11 struct Y struct
20 X Y::*data_mem_ptr = &Y::member; in test()
21 X (Y::*func_mem_ptr1)() = &Y::memfunc1; in test()
22 X (Y::*func_mem_ptr2)() = &Y::memfunc2; in test()
26 X Y::*data_mem_ptr = &Y::member;
27 X (Y::*func_mem_ptr1)() = &Y::memfunc1;
28 X (Y::*func_mem_ptr2)() = &Y::memfunc2;

12345678910>>...122