/third_party/libphonenumber/cpp/src/phonenumbers/ |
D | stringutil.cc | 164 const StringHolder& s3, const StringHolder& s4) { in StrCat() argument 165 return absl::StrCat(s1, s2, s3, s4); in StrCat() 169 const StringHolder& s3, const StringHolder& s4, in StrCat() argument 171 return absl::StrCat(s1, s2, s3, s4, s5); in StrCat() 175 const StringHolder& s3, const StringHolder& s4, in StrCat() argument 177 return absl::StrCat(s1, s2, s3, s4, s5, s6); in StrCat() 181 const StringHolder& s3, const StringHolder& s4, in StrCat() argument 184 return absl::StrCat(s1, s2, s3, s4, s5, s6, s7); in StrCat() 188 const StringHolder& s3, const StringHolder& s4, in StrCat() argument 192 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() + in StrCat() [all …]
|
D | stringutil.h | 111 const StringHolder& s3, const StringHolder& s4); 114 const StringHolder& s3, const StringHolder& s4, 118 const StringHolder& s3, const StringHolder& s4, 122 const StringHolder& s3, const StringHolder& s4, 127 const StringHolder& s3, const StringHolder& s4, 132 const StringHolder& s3, const StringHolder& s4, 138 const StringHolder& s3, const StringHolder& s4, 145 const StringHolder& s3, const StringHolder& s4, 152 const StringHolder& s3, const StringHolder& s4, 160 const StringHolder& s3, const StringHolder& s4, [all …]
|
/third_party/boost/libs/compute/test/ |
D | test_fill.cpp | 78 S s4 = S(84.0f); in BOOST_AUTO_TEST_CASE_TEMPLATE() local 81 T v2 = T(s3, s4); in BOOST_AUTO_TEST_CASE_TEMPLATE() 92 S s4 = S(84.0f); in BOOST_AUTO_TEST_CASE_TEMPLATE() local 94 T v1 = T(s1, s2, s3, s4); in BOOST_AUTO_TEST_CASE_TEMPLATE() 95 T v2 = T(s3, s4, s1, s2); in BOOST_AUTO_TEST_CASE_TEMPLATE() 96 T v3 = T(s4, s3, s2, s1); in BOOST_AUTO_TEST_CASE_TEMPLATE() 106 S s4 = S(84.0f); in BOOST_AUTO_TEST_CASE_TEMPLATE() local 112 T v1 = T(s1, s2, s3, s4, s5, s6, s7, s8); in BOOST_AUTO_TEST_CASE_TEMPLATE() 113 T v2 = T(s3, s4, s1, s2, s7, s8, s5, s6); in BOOST_AUTO_TEST_CASE_TEMPLATE() 114 T v3 = T(s4, s3, s2, s1, s8, s7, s6, s5); in BOOST_AUTO_TEST_CASE_TEMPLATE() [all …]
|
/third_party/boost/boost/numeric/odeint/algebra/ |
D | vector_space_algebra.hpp | 93 static void for_each4( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , Op op ) in for_each4() 95 op( s1 , s2 , s3 , s4 ); in for_each4() 99 static void for_each5( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , Op op ) in for_each5() 101 op( s1 , s2 , s3 , s4 , s5 ); in for_each5() 105 static void for_each6( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , Op op ) in for_each6() 107 op( s1 , s2 , s3 , s4 , s5 , s6 ); in for_each6() 111 static void for_each7( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , Op op ) in for_each7() 113 op( s1 , s2 , s3 , s4 , s5 , s6 , s7 ); in for_each7() 117 …static void for_each8( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , S8 &s8 , Op … in for_each8() 119 op( s1 , s2 , s3 , s4 , s5 , s6 , s7 , s8 ); in for_each8() [all …]
|
D | multi_array_algebra.hpp | 56 static void for_each4( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , Op op ) in for_each4() 58 …detail::for_each4( s1.data() , s1.data() + s1.num_elements() , s2.data() , s3.data() , s4.data() ,… in for_each4() 62 static void for_each5( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , Op op ) in for_each5() 64 …detail::for_each5( s1.data() , s1.data() + s1.num_elements() , s2.data() , s3.data() , s4.data() ,… in for_each5() 68 static void for_each6( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , Op op ) in for_each6() 70 …detail::for_each6( s1.data() , s1.data() + s1.num_elements() , s2.data() , s3.data() , s4.data() ,… in for_each6() 74 static void for_each7( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , Op op ) in for_each7() 76 …detail::for_each7( s1.data() , s1.data() + s1.num_elements() , s2.data() , s3.data() , s4.data() ,… in for_each7() 80 …static void for_each8( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , S8 &s8 , Op … in for_each8() 82 …detail::for_each8( s1.data() , s1.data() + s1.num_elements() , s2.data() , s3.data() , s4.data() ,… in for_each8() [all …]
|
D | range_algebra.hpp | 57 static void for_each4( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , Op op ) in for_each4() 59 …gin( s1 ) , boost::end( s1 ) , boost::begin( s2 ) , boost::begin( s3 ) , boost::begin( s4 ) , op ); in for_each4() 63 static void for_each5( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , Op op ) in for_each5() 65 …boost::end( s1 ) , boost::begin( s2 ) , boost::begin( s3 ) , boost::begin( s4 ) , boost::begin( s5… in for_each5() 69 static void for_each6( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , Op op ) in for_each6() 71 …boost::end( s1 ) , boost::begin( s2 ) , boost::begin( s3 ) , boost::begin( s4 ) , boost::begin( s5… in for_each6() 75 static void for_each7( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , Op op ) in for_each7() 77 …boost::end( s1 ) , boost::begin( s2 ) , boost::begin( s3 ) , boost::begin( s4 ) , boost::begin( s5… in for_each7() 81 …static void for_each8( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , S8 &s8 , Op … in for_each8() 83 …boost::end( s1 ) , boost::begin( s2 ) , boost::begin( s3 ) , boost::begin( s4 ) , boost::begin( s5… in for_each8() [all …]
|
D | fusion_algebra.hpp | 87 static void for_each4( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , Op op ) in for_each4() 90 Sequences sequences( s1 , s2 , s3 , s4 ); in for_each4() 96 static void for_each5( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , Op op ) in for_each5() 99 Sequences sequences( s1 , s2 , s3 , s4 , s5 ); in for_each5() 105 static void for_each6( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , Op op ) in for_each6() 108 Sequences sequences( s1 , s2 , s3 , s4 , s5 , s6 ); in for_each6() 114 static void for_each7( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , Op op ) in for_each7() 117 Sequences sequences( s1 , s2 , s3 , s4 , s5 , s6 , s7 ); in for_each7() 123 …static void for_each8( S1 &s1 , S2 &s2 , S3 &s3 , S4 &s4 , S5 &s5 , S6 &s6 , S7 &s7 , S8 &s8 , Op … in for_each8() 127 Sequences sequences( s1 , s2 , s3 , s4 , s5 , s6 , s7 , s8 ); in for_each8() [all …]
|
D | array_algebra.hpp | 80 const Array< T , dim > &s4 , Op op ) in for_each4() 83 op( s1[i] , s2[i] , s3[i] , s4[i] ); in for_each4() 91 const Array< T , dim > &s4 , in for_each5() 95 op( s1[i] , s2[i] , s3[i] , s4[i] , s5[i] ); in for_each5() 103 const Array< T , dim > &s4 , in for_each6() 108 op( s1[i] , s2[i] , s3[i] , s4[i] , s5[i] , s6[i] ); in for_each6() 116 const Array< T , dim > &s4 , in for_each7() 122 op( s1[i] , s2[i] , s3[i] , s4[i] , s5[i] , s6[i] , s7[i] ); in for_each7() 130 const Array< T , dim > &s4 , in for_each8() 137 op( s1[i] , s2[i] , s3[i] , s4[i] , s5[i] , s6[i] , s7[i] , s8[i] ); in for_each8() [all …]
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | resize_nearest_neighbor_impl.cu | 25 … const int s4, T *output, const int d1, const int d2, const int d3, const int d4, in ResizeNearestNeighbor() argument 32 int in_width = s4; in ResizeNearestNeighbor() 53 input_pos = pos_array[0] * s2 * s3 * s4 + pos_array[1] * s3 * s4 + in_y * s4 + in_x; in ResizeNearestNeighbor() 60 …estNeighbor(const int size, const T *input, const int s1, const int s2, const int s3, const int s4, in CalResizeNearestNeighbor() argument 63 …bor<<<GET_BLOCKS(size), GET_THREADS, 0, cuda_stream>>>(size, input, s1, s2, s3, s4, output, d1, d2, in CalResizeNearestNeighbor() 69 … const int s3, const int s4, float *output, const int d1, const int d2, 73 … const int s3, const int s4, half *output, const int d1, const int d2, 77 … const int s4, int *output, const int d1, const int d2, const int d3,
|
D | resize_nearest_neighbor_grad_impl.cu | 33 … const int s3, const int s4, T *output, const int d1, const int d2, in ResizeNearestNeighborGrad() argument 50 pos_array[0] = pos / (s2 * s3 * s4) % s1; in ResizeNearestNeighborGrad() 51 pos_array[1] = pos / (s3 * s4) % s2; in ResizeNearestNeighborGrad() 52 pos_array[2] = pos / (s4) % s3; in ResizeNearestNeighborGrad() 53 pos_array[3] = pos % s4; in ResizeNearestNeighborGrad() 70 … const int s4, T *output, const int d1, const int d2, const int d3, const int d4, in CalResizeNearestNeighborGrad() argument 75 input_size, input, s1, s2, s3, s4, output, d1, d2, d3, d4, align_corners, h_scale, w_scale); in CalResizeNearestNeighborGrad() 80 … const int s3, const int s4, float *output, const int d1, const int d2, 84 … const int s3, const int s4, half *output, const int d1, const int d2, 88 … const int s3, const int s4, int *output, const int d1, const int d2,
|
D | slice_impl.cu | 56 __global__ void Slice4D(const size_t s1, const size_t s2, const size_t s3, const size_t s4, const s… in Slice4D() argument 65 size_t offset = (i + s1) * (d2 * d3 * d4) + (j + s2) * (d3 * d4) + (k + s3) * d4 + (o + s4); in Slice4D() 71 __global__ void Slice5D(const size_t s1, const size_t s2, const size_t s3, const size_t s4, const s… in Slice5D() argument 84 …(i + s1) * (d2 * d3 * d4 * d5) + (j + s2) * (d3 * d4 * d5) + (k + s3) * (d4 * d5) + (o + s4) * d5 … in Slice5D() 90 __global__ void Slice6D(const size_t s1, const size_t s2, const size_t s3, const size_t s4, const s… in Slice6D() argument 104 … (d2 * d3 * d4 * d5 * d6) + (j + s2) * (d3 * d4 * d5 * d6) + (k + s3) * (d4 * d5 * d6) + (o + s4) * in Slice6D() 111 __global__ void Slice7D(const size_t s1, const size_t s2, const size_t s3, const size_t s4, const s… in Slice7D() argument 128 (o + s4) * (d5 * d6 * d7) + (q + s5) * (d6 * d7) + (r + s6) * d7 + (s + s7); in Slice7D() 134 __global__ void Slice4DGrad(const size_t s1, const size_t s2, const size_t s3, const size_t s4, in Slice4DGrad() argument 143 size_t input_idx = (i + s1) * (d2 * d3 * d4) + (j + s2) * (d3 * d4) + (k + s3) * d4 + (o + s4); in Slice4DGrad() [all …]
|
/third_party/boost/libs/numeric/odeint/examples/ |
D | solar_system.agr | 551 @ s4 hidden false 552 @ s4 type xy 553 @ s4 symbol 0 554 @ s4 symbol size 1.000000 555 @ s4 symbol color 1 556 @ s4 symbol pattern 1 557 @ s4 symbol fill color 1 558 @ s4 symbol fill pattern 0 559 @ s4 symbol linewidth 1.0 560 @ s4 symbol linestyle 1 [all …]
|
/third_party/boost/libs/numeric/ublas/test/tensor/ |
D | test_strides.cpp | 48 strides_type s4{extents_type{2,3}}; in BOOST_AUTO_TEST_CASE_TEMPLATE() local 49 BOOST_CHECK (!s4.empty()); in BOOST_AUTO_TEST_CASE_TEMPLATE() 50 BOOST_CHECK_EQUAL ( s4.size(), 2); in BOOST_AUTO_TEST_CASE_TEMPLATE() 89 strides_type s4{extents_type{2,3}}; in BOOST_AUTO_TEST_CASE() local 90 BOOST_REQUIRE_EQUAL ( s4.size(),2); in BOOST_AUTO_TEST_CASE() 91 BOOST_CHECK_EQUAL ( s4[0], 1); in BOOST_AUTO_TEST_CASE() 92 BOOST_CHECK_EQUAL ( s4[1], 2); in BOOST_AUTO_TEST_CASE() 141 strides_type s4{extents_type{2,3}}; in BOOST_AUTO_TEST_CASE() local 142 BOOST_REQUIRE_EQUAL ( s4.size(),2); in BOOST_AUTO_TEST_CASE() 143 BOOST_CHECK_EQUAL ( s4[0], 3); in BOOST_AUTO_TEST_CASE() [all …]
|
/third_party/boost/boost/numeric/odeint/external/thrust/ |
D | thrust_algebra.hpp | 96 static void for_each4( StateType1 &s1 , StateType2 &s2 , StateType3 &s3 , StateType4 &s4 , in for_each4() 103 boost::begin(s4) ) ) , in for_each4() 107 boost::end(s4) ) ) , in for_each4() 113 static void for_each5( StateType1 &s1 , StateType2 &s2 , StateType3 &s3 , StateType4 &s4 , in for_each5() 120 boost::begin(s4) , in for_each5() 125 boost::end(s4) , in for_each5() 132 static void for_each6( StateType1 &s1 , StateType2 &s2 , StateType3 &s3 , StateType4 &s4 , in for_each6() 139 boost::begin(s4) , in for_each6() 145 boost::end(s4) , in for_each6() 153 static void for_each7( StateType1 &s1 , StateType2 &s2 , StateType3 &s3 , StateType4 &s4 , in for_each7() [all …]
|
/third_party/ffmpeg/libavcodec/arm/ |
D | fft_vfp.S | 71 vsub.f s4, s12, s14 @ z[2].re 109 vadd.f s4, s20, s23 129 vadd.f s4, s21, s20 139 vadd.f s0, s7, s4 141 vsub.f s3, s7, s4 144 vsub.f s4, s28, s0 203 vsub.f s4, s16, s18 225 vsub.f s4, s20, s23 234 vadd.f s4, s25, s24 243 vmul.f s24, s4, s2 @ vector * scalar op [all …]
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | vc1dsp_altivec.c | 34 #define STEP8(s0, s1, s2, s3, s4, s5, s6, s7, vec_rnd) \ argument 36 t0 = vec_sl(vec_add(s0, s4), vec_2); \ 39 t1 = vec_sl(vec_sub(s0, s4), vec_2); \ 75 s4 = vec_sub(t7, t3); \ 81 #define SHIFT_HOR8(s0, s1, s2, s3, s4, s5, s6, s7) \ argument 87 s4 = vec_sra(s4, vec_3); \ 93 #define SHIFT_VERT8(s0, s1, s2, s3, s4, s5, s6, s7) \ argument 99 s4 = vec_sra(vec_add(s4, vec_1s), vec_7); \ 141 vector signed int s0, s1, s2, s3, s4, s5, s6, s7; in vc1_inv_trans_8x8_altivec() local 166 s4 = vec_unpackl(src4); in vc1_inv_trans_8x8_altivec() [all …]
|
/third_party/libjpeg-turbo/simd/mips/ |
D | jsimd_dspr2.S | 164 SAVE_REGS_ON_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 171 li s4, 0xffffab33 // -FIX(0.33126) 204 maddu $ac1, s4, t4 219 RESTORE_REGS_FROM_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 272 SAVE_REGS_ON_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 291 lwx s4, s5(t2) 296 lbu s7, 0(s4) // cr 300 addiu s4, 1 334 RESTORE_REGS_FROM_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 383 SAVE_REGS_ON_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 [all …]
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/mips/ |
D | jsimd_dspr2.S | 164 SAVE_REGS_ON_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 171 li s4, 0xffffab33 // -FIX(0.33126) 204 maddu $ac1, s4, t4 219 RESTORE_REGS_FROM_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 272 SAVE_REGS_ON_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 291 lwx s4, s5(t2) 296 lbu s7, 0(s4) // cr 300 addiu s4, 1 334 RESTORE_REGS_FROM_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 383 SAVE_REGS_ON_STACK 32, s0, s1, s2, s3, s4, s5, s6, s7 [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/bayer/ |
D | gstbayerorc.h | 85 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 86 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 87 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 88 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 89 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 90 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 91 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 92 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_…
|
D | gstbayerorc-dist.h | 85 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 86 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 87 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 88 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 89 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 90 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 91 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_… 92 …C_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_…
|
/third_party/typescript/tests/baselines/reference/ |
D | recursiveInitializer.js | 11 var s4 = '' + s4; variable 31 var s4 = '' + s4;
|
D | recursiveInitializer.symbols | 32 var s4 = '' + s4; 33 >s4 : Symbol(s4, Decl(recursiveInitializer.ts, 9, 3)) 34 >s4 : Symbol(s4, Decl(recursiveInitializer.ts, 9, 3))
|
/third_party/pixman/pixman/ |
D | pixman-mips-dspr2-asm.S | 966 SAVE_REGS_ON_STACK 8, s0, s1, s2, s3, s4, s5 991 MIPS_2xUN8x4_MUL_2xUN8x4 a1, a1, t0, t1, t4, t5, t9, s0, s1, s2, s3, s4, s5 992 MIPS_2xUN8x4_MUL_2xUN8 t0, t1, t8, t8, t0, t1, t9, s0, s1, s2, s3, s4, s5 995 MIPS_2xUN8x4_MUL_2xUN8x4 t2, t3, t0, t1, t2, t3, t9, s0, s1, s2, s3, s4, s5 1015 MIPS_2xUN8x4_MUL_2xUN8 t2, t3, t0, t1, t2, t3, t9, s0, s1, s2, s3, s4, s5 1050 RESTORE_REGS_FROM_STACK 8, s0, s1, s2, s3, s4, s5 1063 RESTORE_REGS_FROM_STACK 8, s0, s1, s2, s3, s4, s5 1069 RESTORE_REGS_FROM_STACK 8, s0, s1, s2, s3, s4, s5 1086 SAVE_REGS_ON_STACK 20, s0, s1, s2, s3, s4, s5, s6, s7, s8 1114 MIPS_2xUN8x4_MUL_2xUN8x4 a1, a1, t0, t1, t4, t5, t9, s0, s1, s2, s3, s4, s5 [all …]
|
/third_party/mindspore/tests/ut/python/ops/ |
D | test_bprop_disorder.py | 43 self.s4 = Parameter(weight, name="s4") 48 return x * (self.s1 * self.s2 + self.s2 * self.s3 + self.s3 * self.s4 + self.s4 * self.s1) 60 self.s4 = Parameter(weight, name="s4") 66 … self.mul(self.s3, self.s4)), self.mul(self.s4, self.s1))))
|
/third_party/skia/tests/ |
D | Skbug6653.cpp | 71 auto s4 = make_surface(dContext); in test_bug_6653() local 72 s4->getCanvas()->clear(SK_ColorBLUE); in test_bug_6653() 73 s4->getCanvas()->drawOval(rect, paint); in test_bug_6653() 79 SkBitmap b4 = read_pixels(s4, SK_ColorRED); in test_bug_6653() 80 SkBitmap b5 = read_pixels(s4, SK_ColorGREEN); in test_bug_6653()
|