Home
last modified time | relevance | path

Searched refs:Y2 (Results 1 – 25 of 97) sorted by relevance

1234

/third_party/boost/libs/mp11/test/
Dmp_insert.cpp25 struct Y2 {}; struct
43 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L1, 0, Y1, Y2>, mp_list<Y1, Y2>>)); in main()
44 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert<L1, mp_size_t<0>, Y1, Y2>, mp_list<Y1, Y2>>)); in main()
55 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 0, Y1, Y2>, mp_list<Y1, Y2, X1, X2, X3, X4, X5… in main()
56 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 1, Y1, Y2>, mp_list<X1, Y1, Y2, X2, X3, X4, X5… in main()
57 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 2, Y1, Y2>, mp_list<X1, X2, Y1, Y2, X3, X4, X5… in main()
58 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 3, Y1, Y2>, mp_list<X1, X2, X3, Y1, Y2, X4, X5… in main()
59 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 4, Y1, Y2>, mp_list<X1, X2, X3, X4, Y1, Y2, X5… in main()
60 …OST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 5, Y1, Y2>, mp_list<X1, X2, X3, X4, X5, Y1, Y2>>… in main()
69 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert<L2, mp_size_t<0>, Y1, Y2>, mp_list<Y1, Y2, X1, X2, X… in main()
[all …]
Dmp_transform.cpp23 struct Y2 {}; struct
56 using L2 = std::tuple<Y1, Y2, Y3, Y4>; in main()
58 …s_same<mp_transform<mp_list, L1, L2>, mp_list<mp_list<X1, Y1>, mp_list<X2, Y2>, mp_list<X3, Y3>, m… in main()
59 …_transform<std::tuple, L1, L2>, mp_list<std::tuple<X1, Y1>, std::tuple<X2, Y2>, std::tuple<X3, Y3>… in main()
60 …<mp_transform<std::pair, L1, L2>, mp_list<std::pair<X1, Y1>, std::pair<X2, Y2>, std::pair<X3, Y3>,… in main()
64 …p_transform<mp_list, L1, L2, L3>, mp_list<mp_list<X1, Y1, Z1>, mp_list<X2, Y2, Z2>, mp_list<X3, Y3… in main()
65 …rm<std::tuple, L1, L2, L3>, mp_list<std::tuple<X1, Y1, Z1>, std::tuple<X2, Y2, Z2>, std::tuple<X3,… in main()
69 using L4 = std::tuple<X1, Y2, X3, Y4>; in main()
78 using L6 = std::pair<Y1, Y2>; in main()
79 using L7 = std::pair<X1, Y2>; in main()
[all …]
Dmp_transform_q.cpp24 struct Y2 {}; struct
65 using L2 = std::tuple<Y1, Y2, Y3, Y4>; in main()
67 …me<mp_transform_q<Q_mp_list, L1, L2>, mp_list<mp_list<X1, Y1>, mp_list<X2, Y2>, mp_list<X3, Y3>, m… in main()
68 …ansform_q<Q_std_tuple, L1, L2>, mp_list<std::tuple<X1, Y1>, std::tuple<X2, Y2>, std::tuple<X3, Y3>… in main()
69 …_transform_q<Q_std_pair, L1, L2>, mp_list<std::pair<X1, Y1>, std::pair<X2, Y2>, std::pair<X3, Y3>,… in main()
73 …ansform_q<Q_mp_list, L1, L2, L3>, mp_list<mp_list<X1, Y1, Z1>, mp_list<X2, Y2, Z2>, mp_list<X3, Y3… in main()
74 …q<Q_std_tuple, L1, L2, L3>, mp_list<std::tuple<X1, Y1, Z1>, std::tuple<X2, Y2, Z2>, std::tuple<X3,… in main()
78 using L4 = std::tuple<X1, Y2, X3, Y4>; in main()
87 using L6 = std::pair<Y1, Y2>; in main()
88 using L7 = std::pair<X1, Y2>; in main()
[all …]
/third_party/boost/libs/variant2/test/
Dvariant_destroy.cpp75 struct Y2 struct
81 Y2() noexcept: v(0) { ++instances; } in Y2() function
82 explicit Y2(int v) noexcept: v(v) { ++instances; } in Y2() argument
83 Y2(Y2 const& r) noexcept: v(r.v) { ++instances; } in Y2() argument
84 Y2(Y2&& r) noexcept: v(r.v) { ++instances; } in Y2() argument
86 ~Y2() noexcept { --instances; } in ~Y2() argument
88 Y2& operator=( Y2 const& r ) noexcept { v = r.v; return *this; } in operator =() argument
89 Y2& operator=( Y2&& r ) noexcept { v = r.v; return *this; } in operator =() argument
92 int Y2::instances = 0;
117 BOOST_TEST_EQ( Y2::instances, 0 ); in main()
[all …]
Dvariant_copy_assign_throw.cpp31 struct Y2 struct
33 Y2() noexcept {} in Y2() function
35 Y2(Y2 const&) in Y2() argument
40 Y2& operator=(Y2 const&) = default;
45 variant<Y1, Y2> v1( in_place_type_t<Y1>{} ); in test()
46 variant<Y1, Y2> v2( in_place_type_t<Y2>{} ); in test()
Dvariant_move_assign_throw.cpp31 struct Y2 struct
33 Y2() noexcept {} in Y2() argument
35 Y2(Y2&&) in Y2() function
40 Y2& operator=(Y2&&) = default;
45 variant<Y1, Y2> v1( in_place_type_t<Y1>{} ); in test()
46 variant<Y1, Y2> v2( in_place_type_t<Y2>{} ); in test()
/third_party/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10SwizzlePattern.h3745 …{X0, X1, X2, X3, Y0, Y1, Y2, …
3746 …{0, X0, X1, X2, Y0, Y1, Y2, …
3747 …{0, 0, X0, X1, Y0, Y1, Y2, …
3750 …{X0, X1, X2, Y1, Y0, Y2, X3, …
3753 …{X0, Y0, X1, Y1, X2, Y2, X3, …
3754 …{0, X0, Y0, X1, Y1, X2, Y2, …
3755 … X0, Y0, X1, Y1, X2, Y2, }, // 10
3757 …{X0, Y0, X1, Y1, X2, Y2, X3, …
3758 …{S0, X0, Y0, X1, Y1, X2, Y2, …
3759 … X0, Y0, X1, Y1, X2, Y2, }, // 14
[all …]
/third_party/boost/libs/utility/test/
Doperators_test.cpp308 template <class X1, class Y1, class X2, class Y2>
309 void sanity_check(X1 x1, Y1 y1, X2 x2, Y2 y2) in sanity_check()
315 template <class X1, class Y1, class X2, class Y2>
316 void test_less_than_comparable_aux(X1 x1, Y1 y1, X2 x2, Y2 y2) in test_less_than_comparable_aux()
324 template <class X1, class Y1, class X2, class Y2>
325 void test_less_than_comparable(X1 x1, Y1 y1, X2 x2, Y2 y2) in test_less_than_comparable()
332 template <class X1, class Y1, class X2, class Y2>
333 void test_equality_comparable_aux(X1 x1, Y1 y1, X2 x2, Y2 y2) in test_equality_comparable_aux()
339 template <class X1, class Y1, class X2, class Y2>
340 void test_equality_comparable(X1 x1, Y1 y1, X2 x2, Y2 y2) in test_equality_comparable()
[all …]
/third_party/typescript/tests/baselines/reference/
DinvalidModuleWithVarStatements.js8 module Y2 {
36 var Y2; variable
37 (function (Y2) { argument
39 })(Y2 || (Y2 = {}));
DcontextualTypeShouldBeLiteral.types70 interface Y2 {
81 function foo2(bar: X2 | Y2) { }
82 >foo2 : (bar: X2 | Y2) => void
83 >bar : X2 | Y2
87 >foo2 : (bar: X2 | Y2) => void
102 >this : X2 | Y2
106 >this : X2 | Y2
DinvalidModuleWithVarStatements.types12 module Y2 {
13 >Y2 : typeof Y2
DcontextualTypeShouldBeLiteral.symbols74 interface Y2 {
75 >Y2 : Symbol(Y2, Decl(contextualTypeShouldBeLiteral.ts, 28, 1))
78 >type2 : Symbol(Y2.type2, Decl(contextualTypeShouldBeLiteral.ts, 30, 14))
81 >value : Symbol(Y2.value, Decl(contextualTypeShouldBeLiteral.ts, 31, 15))
84 >method : Symbol(Y2.method, Decl(contextualTypeShouldBeLiteral.ts, 32, 27))
87 function foo2(bar: X2 | Y2) { }
91 >Y2 : Symbol(Y2, Decl(contextualTypeShouldBeLiteral.ts, 28, 1))
DinvalidModuleWithStatementsOfEveryKind.js12 module Y2 {
113 var Y2; variable
114 (function (Y2) { argument
127 })(Y2 || (Y2 = {}));
DinvalidModuleWithVarStatements.symbols11 module Y2 {
12 >Y2 : Symbol(Y2, Decl(invalidModuleWithVarStatements.ts, 4, 1))
DinvalidModuleWithStatementsOfEveryKind.types20 module Y2 {
21 >Y2 : typeof Y2
/third_party/ffmpeg/libswscale/
Doutput.c562 int Y2 = 1 << 18; in yuv2mono_X_c_template() local
566 Y2 += lumSrc[j][i+1] * lumFilter[j]; in yuv2mono_X_c_template()
569 Y2 >>= 19; in yuv2mono_X_c_template()
570 if ((Y1 | Y2) & 0x100) { in yuv2mono_X_c_template()
572 Y2 = av_clip_uint8(Y2); in yuv2mono_X_c_template()
580 …err = Y2 + ((7*Y1 + 1*c->dither_error[0][i+1] + 5*c->dither_error[0][i+2] + 3*c->dither_error[0][i… in yuv2mono_X_c_template()
586 accumulate_bit(acc, Y2 + d128[(i + 1) & 7]); in yuv2mono_X_c_template()
746 #define output_pixels(pos, Y1, U, Y2, V) \ argument
750 dest[pos + 2] = Y2; \
755 dest[pos + 2] = Y2; \
[all …]
/third_party/openssl/crypto/bn/asm/
Drsaz-avx2.pl104 my $Y2="%ymm13";
276 $TEMP2=$Y2;
422 $TEMP4 = $Y2;
489 vmovd %eax, $Y2
490 vpbroadcastq $Y2, $Y2
529 vpmuludq 32*1-8-128($np), $Y2, $TEMP2 # see above
534 vpmuludq 32*2-8-128($np), $Y2, $TEMP0 # see above
542 vpmuludq $Y2, $TEMP1, $TEMP1
546 vpmuludq $Y2, $TEMP2, $TEMP2
552 vpmuludq $Y2, $TEMP0, $TEMP0
[all …]
/third_party/boost/libs/core/test/
Dlightweight_test_fail7.cpp18 template<class T1, class T2> struct Y2 struct
35 BOOST_TEST_TRAIT_TRUE(( Y2<X1::type, X2::type> )); in main() argument
Dlightweight_test_test2.cpp18 template<class T1, class T2> struct Y2 struct
41 BOOST_TEST_TRAIT_FALSE(( Y2<X1::type, X2::type> )); in main() argument
/third_party/openGLES/extensions/OML/
DOML_resample.txt172 <Cb0,Y0> <Cr0,Y1> <Cb2,Y2> <Cr2, Y3>
179 <Cb0,Y0,Cr0> <Cb0,Y1,Cr0> <Cb2,Y2,Cr2> <Cb2,Y3,Cr2>
183 <Cb0,Y0,A0> <Cr0,Y1,A1> <Cb2,Y2,A2> <Cr2,Y3,A3>
190 <Cb0,Y0,Cr0,A0> <Cb0,Y1,Cr0,A1> <Cb2,Y2,Cr2,A2> <Cb2,Y3,Cr2,A3>
225 <Cb0,Y0> <Cr0,Y1> <Cb2,Y2> <Cr2, Y3>
232 <Cb0,Y0,Cr0> <Cb0,Y1,Cr0> <Cb2,Y2,Cr2> <Cb2,Y3,Cr2>
237 <Cb0,Y0,A0> <Cr0,Y1,A1> <Cb2,Y2,A2> <Cr2,Y3,A3>
244 <Cb0,Y0,Cr0,A0> <Cb0,Y1,Cr0,A1> <Cb2,Y2,Cr2,A2> <Cb2,Y3,Cr2,A3>
296 <Cb0,Y0><Cr0, Y1> <Cb2,Y2><Cr2, Y3>
306 <Cb0,Y0,A0> <Cr0,Y1,A1> <Cb2,Y2,A2> <Cr2,Y3,A3>
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/OML/
DOML_resample.txt172 <Cb0,Y0> <Cr0,Y1> <Cb2,Y2> <Cr2, Y3>
179 <Cb0,Y0,Cr0> <Cb0,Y1,Cr0> <Cb2,Y2,Cr2> <Cb2,Y3,Cr2>
183 <Cb0,Y0,A0> <Cr0,Y1,A1> <Cb2,Y2,A2> <Cr2,Y3,A3>
190 <Cb0,Y0,Cr0,A0> <Cb0,Y1,Cr0,A1> <Cb2,Y2,Cr2,A2> <Cb2,Y3,Cr2,A3>
225 <Cb0,Y0> <Cr0,Y1> <Cb2,Y2> <Cr2, Y3>
232 <Cb0,Y0,Cr0> <Cb0,Y1,Cr0> <Cb2,Y2,Cr2> <Cb2,Y3,Cr2>
237 <Cb0,Y0,A0> <Cr0,Y1,A1> <Cb2,Y2,A2> <Cr2,Y3,A3>
244 <Cb0,Y0,Cr0,A0> <Cb0,Y1,Cr0,A1> <Cb2,Y2,Cr2,A2> <Cb2,Y3,Cr2,A3>
296 <Cb0,Y0><Cr0, Y1> <Cb2,Y2><Cr2, Y3>
306 <Cb0,Y0,A0> <Cr0,Y1,A1> <Cb2,Y2,A2> <Cr2,Y3,A3>
[all …]
/third_party/typescript/tests/cases/compiler/
DcontextualTypeShouldBeLiteral.ts32 interface Y2 { interface
38 function foo2(bar: X2 | Y2) { }
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_rect.c318 int *Y2) in SDL_IntersectRectAndLine() argument
350 if (!Y2) { in SDL_IntersectRectAndLine()
363 y2 = *Y2; in SDL_IntersectRectAndLine()
404 *Y2 = recty1; in SDL_IntersectRectAndLine()
406 *Y2 = recty2; in SDL_IntersectRectAndLine()
458 *Y2 = y2; in SDL_IntersectRectAndLine()
/third_party/boost/boost/units/
Dquantity.hpp380 template<class System2, class Y2>
381 BOOST_CONSTEXPR quantity(const quantity<unit<dimensionless_type, System2>,Y2>& source, in quantity() argument
385 detail::is_non_narrowing_conversion<Y2, Y>, in quantity()
390 typename boost::enable_if<detail::is_non_narrowing_conversion<Y2, Y> >::type* = 0, in quantity()
401 template<class System2, class Y2>
402 … explicit BOOST_CONSTEXPR quantity(const quantity<unit<dimensionless_type, System2>,Y2>& source, in quantity() argument
406 boost::mpl::not_<detail::is_non_narrowing_conversion<Y2, Y> >, in quantity()
411 typename boost::disable_if<detail::is_non_narrowing_conversion<Y2, Y> >::type* = 0, in quantity()
424 template<class System2, class Y2>
425 …STEXPR quantity(const quantity<unit<dimensionless_type,homogeneous_system<System2> >,Y2>& source) : in quantity()
[all …]
/third_party/ffmpeg/libavcodec/
Ddxtory.c130 uint8_t *Y1, *Y2, *Y3, *Y4, *U, *V; in dxtory_decode_v1_410() local
153 Y2 = pic->data[0] + pic->linesize[0]; in dxtory_decode_v1_410()
161 AV_COPY32U(Y2 + w, src + 4); in dxtory_decode_v1_410()
171 Y2[width + w] = src[w + hmargin * 1]; in dxtory_decode_v1_410()
181 Y2 += pic->linesize[0] * 4; in dxtory_decode_v1_410()
192 AV_COPY32U(Y2 + w, src + 4); in dxtory_decode_v1_410()
204 AV_COPY32U(Y2 + w, src + 4); in dxtory_decode_v1_410()
226 uint8_t *Y1, *Y2, *U, *V; in dxtory_decode_v1_420() local
249 Y2 = pic->data[0] + pic->linesize[0]; in dxtory_decode_v1_420()
255 AV_COPY16(Y2 + w, src + 2); in dxtory_decode_v1_420()
[all …]

1234