/third_party/boost/libs/mp11/test/ |
D | mp_insert.cpp | 24 struct Y1 {}; struct 40 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L1, 0, Y1>, mp_list<Y1>>)); in main() 41 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert<L1, mp_size_t<0>, Y1>, mp_list<Y1>>)); in main() 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() [all …]
|
D | mp_product.cpp | 22 struct Y1 {}; struct 41 using L2 = mp_list<Y1>; in main() 44 …F3, L1, L2, L3>, std::tuple<F3<X1, Y1, Z1>, F3<X1, Y1, Z2>, F3<X2, Y1, Z1>, F3<X2, Y1, Z2>, F3<X3,… in main() 45 …3>, L1, L2, L3>, std::tuple<F3<X1, Y1, Z1>, F3<X1, Y1, Z2>, F3<X2, Y1, Z1>, F3<X2, Y1, Z2>, F3<X3,… in main()
|
D | mp_transform_q.cpp | 23 struct Y1 {}; struct 65 using L2 = std::tuple<Y1, Y2, Y3, Y4>; in main() 67 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform_q<Q_mp_list, L1, L2>, mp_list<mp_list<X1, Y1>, mp… in main() 68 …((std::is_same<mp_transform_q<Q_std_tuple, L1, L2>, mp_list<std::tuple<X1, Y1>, std::tuple<X2, Y2>… in main() 69 …UE((std::is_same<mp_transform_q<Q_std_pair, L1, L2>, mp_list<std::pair<X1, Y1>, std::pair<X2, Y2>,… in main() 73 …E((std::is_same<mp_transform_q<Q_mp_list, L1, L2, L3>, mp_list<mp_list<X1, Y1, Z1>, mp_list<X2, Y2… in main() 74 …d::is_same<mp_transform_q<Q_std_tuple, L1, L2, L3>, mp_list<std::tuple<X1, Y1, Z1>, std::tuple<X2,… in main() 87 using L6 = std::pair<Y1, Y2>; in main() 91 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform_q<Q_mp_list, L5, L6>, std::pair<mp_list<X1, Y1>, … in main() 92 …(std::is_same<mp_transform_q<Q_mp_list, L5, L6, L7>, std::pair<mp_list<X1, Y1, X1>, mp_list<X2, Y2… in main() [all …]
|
D | mp_transform.cpp | 22 struct Y1 {}; struct 56 using L2 = std::tuple<Y1, Y2, Y3, Y4>; in main() 58 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform<mp_list, L1, L2>, mp_list<mp_list<X1, Y1>, mp_lis… in main() 59 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform<std::tuple, L1, L2>, mp_list<std::tuple<X1, Y1>, … in main() 60 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform<std::pair, L1, L2>, mp_list<std::pair<X1, Y1>, st… in main() 64 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform<mp_list, L1, L2, L3>, mp_list<mp_list<X1, Y1, Z1>… in main() 65 …(std::is_same<mp_transform<std::tuple, L1, L2, L3>, mp_list<std::tuple<X1, Y1, Z1>, std::tuple<X2,… in main() 78 using L6 = std::pair<Y1, Y2>; in main() 82 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform<mp_list, L5, L6>, std::pair<mp_list<X1, Y1>, mp_l… in main() 83 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform<mp_list, L5, L6, L7>, std::pair<mp_list<X1, Y1, X… in main() [all …]
|
/third_party/boost/libs/variant2/test/ |
D | variant_destroy.cpp | 56 struct Y1 struct 62 Y1() noexcept: v(0) { ++instances; } in Y1() argument 63 explicit Y1(int v) noexcept: v(v) { ++instances; } in Y1() argument 64 Y1(Y1 const& r) noexcept: v(r.v) { ++instances; } in Y1() argument 65 Y1(Y1&& r) noexcept: v(r.v) { ++instances; } in Y1() argument 67 ~Y1() noexcept { --instances; } in ~Y1() argument 69 Y1& operator=( Y1 const& r ) noexcept { v = r.v; return *this; } in operator =() argument 70 Y1& operator=( Y1&& r ) noexcept { v = r.v; return *this; } in operator =() argument 73 int Y1::instances = 0; 96 BOOST_TEST_EQ( Y1::instances, 0 ); in main() [all …]
|
D | variant_copy_assign_throw.cpp | 19 struct Y1 struct 21 Y1() noexcept {} // =default fails on msvc-14.0 in Y1() function 23 Y1(Y1 const&) in Y1() argument 28 Y1& operator=(Y1 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()
|
D | variant_move_assign_throw.cpp | 19 struct Y1 struct 21 Y1() noexcept {} // =default fails on msvc-14.0 in Y1() function 23 Y1(Y1&&) in Y1() argument 28 Y1& operator=(Y1&&) = 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/boost/libs/utility/test/ |
D | operators_test.cpp | 308 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/ffmpeg/libswscale/ |
D | output.c | 561 int Y1 = 1 << 18; in yuv2mono_X_c_template() local 565 Y1 += lumSrc[j][i] * lumFilter[j]; in yuv2mono_X_c_template() 568 Y1 >>= 19; in yuv2mono_X_c_template() 570 if ((Y1 | Y2) & 0x100) { in yuv2mono_X_c_template() 571 Y1 = av_clip_uint8(Y1); in yuv2mono_X_c_template() 575 …Y1 += (7*err + 1*c->dither_error[0][i] + 5*c->dither_error[0][i+1] + 3*c->dither_error[0][i+2] + 8… in yuv2mono_X_c_template() 577 acc = 2*acc + (Y1 >= 128); in yuv2mono_X_c_template() 578 Y1 -= 220*(acc&1); 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() 581 c->dither_error[0][i+1] = Y1; in yuv2mono_X_c_template() [all …]
|
/third_party/mesa3d/src/amd/addrlib/src/gfx10/ |
D | gfx10SwizzlePattern.h | 3745 …{X0, X1, X2, X3, Y0, Y1, Y2, … 3746 …{0, X0, X1, X2, Y0, Y1, Y2, … 3747 …{0, 0, X0, X1, Y0, Y1, Y2, … 3748 …{0, 0, 0, X0, Y0, Y1, X1, … 3749 …{0, 0, 0, 0, Y0, Y1, X0, … 3750 …{X0, X1, X2, Y1, Y0, Y2, X3, … 3751 … 0, X0, Y0, X1, X2, Y1, }, // 6 3752 … 0, 0, X0, Y0, X1, Y1, }, // 7 3753 …{X0, Y0, X1, Y1, X2, Y2, X3, … 3754 …{0, X0, Y0, X1, Y1, X2, Y2, … [all …]
|
/third_party/ffmpeg/libswscale/ppc/ |
D | yuv2rgb_altivec.c | 310 vector signed short Y0, Y1, Y2, Y3; \ 370 Y1 = vec_unl(y0); \ 375 Y1 = vec_mradds(Y1, lCY, lOY); \ 400 R1 = vec_add(Y1, vx1); \ 401 G1 = vec_add(Y1, uvx1); \ 402 B1 = vec_add(Y1, ux1); \ 647 vector signed short X, X0, X1, Y0, U0, V0, Y1, U1, V1, U, V; in yuv2packedX_altivec() local 666 Y1 = RND; in yuv2packedX_altivec() 672 Y1 = vec_mradds(X1, YCoeffs[j], Y1); in yuv2packedX_altivec() 687 Y1 = vec_sra(Y1, SCL); in yuv2packedX_altivec() [all …]
|
/third_party/boost/libs/core/test/ |
D | demangle_test.cpp | 16 template<class T1, class T2> struct Y1 struct 22 typedef Y1<int, long> T; in test_demangle() 28 typedef Y1<int, long> T; in test_demangle_alloc() 43 typedef Y1<int, long> T; in test_scoped_demangled_name()
|
D | demangled_name_test.cpp | 14 template<class T1, class T2> struct Y1 struct 20 typedef Y1<int, long> T; in main()
|
D | lightweight_test_fail8.cpp | 13 template<class T1, class T2> struct Y1 struct 35 BOOST_TEST_TRAIT_FALSE(( Y1<X1::type, X2::type> )); in main() argument
|
D | lightweight_test_test2.cpp | 13 template<class T1, class T2> struct Y1 struct 37 BOOST_TEST_TRAIT_TRUE(( Y1<X1::type, X2::type> )); in main() argument
|
/third_party/ffmpeg/libavcodec/mips/ |
D | sbrdsp_mips.c | 711 float *Y1=&Y[m][0]; in sbr_hf_apply_noise_0_mips() local 742 [Y1]"r"(Y1), [s_m1]"r"(s_m1), [q_filt1]"r"(q_filt1) in sbr_hf_apply_noise_0_mips() 759 float *Y1=&Y[m][0]; in sbr_hf_apply_noise_1_mips() local 787 [Y1] "r" (Y1), [s_m1] "r" (s_m1), [q_filt1] "r" (q_filt1), in sbr_hf_apply_noise_1_mips() 805 float *Y1=&Y[m][0]; in sbr_hf_apply_noise_2_mips() local 834 [Y1]"r"(Y1), [s_m1]"r"(s_m1), [q_filt1]"r"(q_filt1) in sbr_hf_apply_noise_2_mips() 849 float *Y1=&Y[m][0]; in sbr_hf_apply_noise_3_mips() local 880 [Y1]"r"(Y1), [s_m1]"r"(s_m1), [q_filt1]"r"(q_filt1), in sbr_hf_apply_noise_3_mips()
|
/third_party/typescript/tests/baselines/reference/ |
D | intersectionTypeNormalization.types | 40 type Y1 = (A | X & Y) & (C | D); 41 >Y1 : Y1 49 var y: Y1; 50 >y : Y1 53 >y : Y1 56 >y : Y1
|
D | forwardRefInEnum.symbols | 23 Y1 = E1["Z"] 24 >Y1 : Symbol(E1.Y1, Decl(forwardRefInEnum.ts, 6, 13))
|
/third_party/openssl/crypto/bn/asm/ |
D | rsaz-avx2.pl | 103 my $Y1="%ymm12"; 275 $TEMP0=$Y1; 421 $TEMP3 = $Y1; 463 vmovd %eax, $Y1 467 vpbroadcastq $Y1, $Y1 492 vpmuludq 32*1-128($np), $Y1, $TEMP0 497 vpmuludq 32*2-128($np), $Y1, $TEMP1 501 vpmuludq 32*3-128($np), $Y1, $TEMP2 509 vpmuludq 32*4-128($np), $Y1, $TEMP0 513 vpmuludq 32*5-128($np), $Y1, $TEMP1 [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | video-format.c | 766 guint Y0, Y1, U, V; in unpack_Y210() local 771 Y1 = GST_READ_UINT16_LE (s + 4); in unpack_Y210() 776 Y1 |= (Y1 >> 10); in unpack_Y210() 782 d[1] = Y1; in unpack_Y210() 794 Y1 = GST_READ_UINT16_LE (s + i * 8 + 4); in unpack_Y210() 808 d[i * 8 + 5] = Y1; in unpack_Y210() 840 guint16 Y0, Y1, U, V; in pack_Y210() local 849 Y1 = s[i * 4 + 1] & 0xffc0; in pack_Y210() 851 Y1 = s[(i + 1) * 4 + 1] & 0xffc0; in pack_Y210() 855 GST_WRITE_UINT16_LE (d + i * 4 + 4, Y1); in pack_Y210() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | yuv_sse41.c | 45 const __m128i Y1 = _mm_mulhi_epu16(*Y0, k19077); in ConvertYUV444ToRGB_SSE41() local 48 const __m128i R1 = _mm_sub_epi16(Y1, k14234); in ConvertYUV444ToRGB_SSE41() 53 const __m128i G2 = _mm_add_epi16(Y1, k8708); in ConvertYUV444ToRGB_SSE41() 59 const __m128i B1 = _mm_adds_epu16(B0, Y1); in ConvertYUV444ToRGB_SSE41() 419 __m128i r, g, b, Y0, Y1; in ConvertRGB24ToY_SSE41() local 431 ConvertRGBToY_SSE41(&r, &g, &b, &Y1); in ConvertRGB24ToY_SSE41() 434 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); in ConvertRGB24ToY_SSE41() 453 __m128i r, g, b, Y0, Y1; in ConvertBGR24ToY_SSE41() local 465 ConvertRGBToY_SSE41(&r, &g, &b, &Y1); in ConvertBGR24ToY_SSE41() 468 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); in ConvertBGR24ToY_SSE41() [all …]
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | yuv_sse41.c | 45 const __m128i Y1 = _mm_mulhi_epu16(*Y0, k19077); in ConvertYUV444ToRGB_SSE41() local 48 const __m128i R1 = _mm_sub_epi16(Y1, k14234); in ConvertYUV444ToRGB_SSE41() 53 const __m128i G2 = _mm_add_epi16(Y1, k8708); in ConvertYUV444ToRGB_SSE41() 59 const __m128i B1 = _mm_adds_epu16(B0, Y1); in ConvertYUV444ToRGB_SSE41() 419 __m128i r, g, b, Y0, Y1; in ConvertRGB24ToY_SSE41() local 431 ConvertRGBToY_SSE41(&r, &g, &b, &Y1); in ConvertRGB24ToY_SSE41() 434 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); in ConvertRGB24ToY_SSE41() 453 __m128i r, g, b, Y0, Y1; in ConvertBGR24ToY_SSE41() local 465 ConvertRGBToY_SSE41(&r, &g, &b, &Y1); in ConvertBGR24ToY_SSE41() 468 STORE_16(_mm_packus_epi16(Y0, Y1), y + i); in ConvertBGR24ToY_SSE41() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | dxtory.c | 130 uint8_t *Y1, *Y2, *Y3, *Y4, *U, *V; in dxtory_decode_v1_410() local 152 Y1 = pic->data[0]; in dxtory_decode_v1_410() 160 AV_COPY32U(Y1 + w, src); in dxtory_decode_v1_410() 170 Y1[width + w] = src[w]; in dxtory_decode_v1_410() 180 Y1 += pic->linesize[0] * 4; in dxtory_decode_v1_410() 190 AV_COPY32U(Y1 + w, src); in dxtory_decode_v1_410() 202 AV_COPY32U(Y1 + w, src); in dxtory_decode_v1_410() 226 uint8_t *Y1, *Y2, *U, *V; in dxtory_decode_v1_420() local 248 Y1 = pic->data[0]; in dxtory_decode_v1_420() 254 AV_COPY16(Y1 + w, src); in dxtory_decode_v1_420() [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OML/ |
D | OML_resample.txt | 172 <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/openGLES/extensions/OML/ |
D | OML_resample.txt | 172 <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 …]
|