Home
last modified time | relevance | path

Searched refs:col2 (Results 1 – 25 of 54) sorted by relevance

123

/third_party/skia/third_party/externals/tint/test/shader_io/
Dshared_struct_different_stages.wgsl.expected.glsl6 float col2;
11 float col2;
22 float col2;
30 wrapper_result.col2 = inner_result.col2;
35 out float col2;
40 col2 = outputs.col2;
51 float col2;
56 float col2;
61 float col2;
67 float g = colors.col2;
[all …]
Dshared_struct_different_stages.wgsl.expected.msl6 float col2;
11 float col2 [[user(locn2)]];
16 float col2 [[user(locn2)]];
20 Interface const tint_symbol_3 = {.col1=0.400000006f, .col2=0.600000024f, .pos=float4()};
28 wrapper_result.col2 = inner_result.col2;
35 float const g = colors.col2;
39 Interface const tint_symbol_4 = {.col1=tint_symbol_1.col1, .col2=tint_symbol_1.col2, .pos=pos};
Dshared_struct_different_stages.wgsl.expected.hlsl3 float col2;
8 float col2 : TEXCOORD2;
21 wrapper_result.col2 = inner_result.col2;
28 float col2 : TEXCOORD2;
34 const float g = colors.col2;
38 const Interface tint_symbol_4 = {tint_symbol_1.col1, tint_symbol_1.col2, tint_symbol_1.pos};
Dshared_struct_different_stages.wgsl3 [[location(2)]] col2 : f32;
15 let g : f32 = colors.col2;
Dshared_struct_different_stages.wgsl.expected.wgsl5 col2 : f32;
18 let g : f32 = colors.col2;
/third_party/boost/libs/geometry/test/strategies/
Dside_of_intersection.cpp52 segment col2(point(5, 5), point(10, 5)); // One IP with col1 at (5,5) in test_main() local
54 BOOST_CHECK_EQUAL( 0, side::apply(col1, col2, col3, fb)); in test_main()
60 segment col2(point(5, 5), point(5, 12)); // IP with col1 at (5,5) in test_main() local
62 BOOST_CHECK_EQUAL( 0, side::apply(col1, col2, col3, fb)); in test_main()
67 segment col2(point(5, 5), point(5, 12)); // IP with col1 at (5,5) in test_main() local
69 BOOST_CHECK_EQUAL( 0, side::apply(col1, col2, col3, fb)); in test_main()
74 segment col2(point(5, 12), point(5, 5)); // IP with col1 at (5,5) in test_main() local
76 BOOST_CHECK_EQUAL( 0, side::apply(col1, col2, col3, fb)); in test_main()
82 segment col2(point(517248, -862064), point(517248, -172408)); in test_main() local
84 BOOST_CHECK_EQUAL( 0, side::apply(col1, col2, col3, fb)); in test_main()
[all …]
/third_party/mindspore/tests/ut/python/dataset/
Dtest_filterop.py234 def filter_func_map(col1, col2): argument
235 _ = col2
243 def filter_func_map_all(col1, col2): argument
244 _, _ = col1, col2
313 def filter_func_input_column1(col1, col2): argument
314 _ = col2
357 def filter_func_Partial_0(col1, col2, col3, col4): argument
358 _, _, _ = col2, col3, col4
414 def filter_func_Partial(col1, col2): argument
415 _ = col2
[all …]
Dtest_var_batch_map.py189 def col1_col2_add_num(col1, col2, batchInfo): argument
192 [np.copy(arr + 300) for arr in col2]])
197 def invert_sign_per_batch_multi_col(col1, col2, batchInfo): argument
199 [np.copy(((-1) ** batchInfo.get_batch_num()) * arr) for arr in col2])
249 def map_func(col1, col2, batchInfo): argument
251 [np.copy(-(1 + batchInfo.get_batch_num()) * arr) for arr in col2])
323 def merge_col(col1, col2, batchInfo): argument
326 merged.append(np.array(v + col2[k]))
329 def swap_col(col1, col2, batchInfo): argument
330 return ([np.copy(a) for a in col2], [np.copy(b) for b in col1])
/third_party/boost/libs/test/doc/examples/
Dexample36.run-fail.cpp15 int col2 [] = { 1, 2, 4, 4, 5, 7, 7 }; in BOOST_AUTO_TEST_CASE() local
17 BOOST_CHECK_EQUAL_COLLECTIONS( col1, col1+7, col2, col2+7 ); in BOOST_AUTO_TEST_CASE()
Dexample36.output4 test.cpp(11): error in "test": check { col1, col1+7 } == { col2, col2+7 } has failed.
/third_party/gstreamer/gstplugins_good/gst/goom/
Dppc_zoom_ultimate.s121 lwz r26,4(r2) ; Loads col2 -> r26
132 and r10,r26,r12 ; Masks col2 channels 1 & 3 : 0x00XX00XX
134 mullw r10,r10,r22 ; Applies coef2 on col2 channels 1 & 3
136 andi. r29,r26,0xFF00 ; Masks col2 channel 2 : 0x0000XX00
137 mullw r29,r29,r22 ; Applies coef2 on col2 channel 2
139 add r8 ,r8 ,r10 ; Adds col1 & col2 channels 1 & 3
141 add r25,r25,r29 ; Adds col1 & col2 channel 2
146 add r7 ,r8 ,r10 ; Adds col3 to (col1 + col2) channels 1 & 3
149 add r25,r25,r29 ; Adds col 3 to (col1 + col2) channel 2
152 add r7 ,r7 ,r10 ; Adds col4 to (col1 + col2 + col3) channels 1 & 3
[all …]
/third_party/libjpeg-turbo/simd/powerpc/
Djidctfst-altivec.c119 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_idct_ifast_altivec() local
141 col2 = vec_ld(32, coef_block); in jsimd_idct_ifast_altivec()
148 tmp1 = vec_or(col1, col2); in jsimd_idct_ifast_altivec()
181 col2 = vec_mladd(col2, quant2, pw_zero); in jsimd_idct_ifast_altivec()
220 outb = vec_packs(col2, col2); in jsimd_idct_ifast_altivec()
Djidctint-altivec.c214 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_idct_islow_altivec() local
250 col2 = vec_ld(32, coef_block); in jsimd_idct_islow_altivec()
257 tmp1 = vec_or(col1, col2); in jsimd_idct_islow_altivec()
292 col2 = vec_mladd(col2, quant2, pw_zero); in jsimd_idct_islow_altivec()
322 outb = vec_packs(col2, col2); in jsimd_idct_islow_altivec()
Djfdctfst-altivec.c93 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_fdct_ifast_altivec() local
124 tmp2 = vec_add(col2, col5); in jsimd_fdct_ifast_altivec()
125 tmp5 = vec_sub(col2, col5); in jsimd_fdct_ifast_altivec()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/powerpc/
Djidctfst-altivec.c119 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_idct_ifast_altivec() local
141 col2 = vec_ld(32, coef_block); in jsimd_idct_ifast_altivec()
148 tmp1 = vec_or(col1, col2); in jsimd_idct_ifast_altivec()
181 col2 = vec_mladd(col2, quant2, pw_zero); in jsimd_idct_ifast_altivec()
220 outb = vec_packs(col2, col2); in jsimd_idct_ifast_altivec()
Djidctint-altivec.c214 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_idct_islow_altivec() local
250 col2 = vec_ld(32, coef_block); in jsimd_idct_islow_altivec()
257 tmp1 = vec_or(col1, col2); in jsimd_idct_islow_altivec()
292 col2 = vec_mladd(col2, quant2, pw_zero); in jsimd_idct_islow_altivec()
322 outb = vec_packs(col2, col2); in jsimd_idct_islow_altivec()
Djfdctfst-altivec.c93 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_fdct_ifast_altivec() local
124 tmp2 = vec_add(col2, col5); in jsimd_fdct_ifast_altivec()
125 tmp5 = vec_sub(col2, col5); in jsimd_fdct_ifast_altivec()
/third_party/flutter/skia/third_party/externals/dawn/src/tests/end2end/
DColorStateTests.cpp214 constexpr RGBA8 operator+(const RGBA8& col1, const RGBA8& col2) { in operator +() argument
215 int r = static_cast<int>(col1.r) + static_cast<int>(col2.r); in operator +()
216 int g = static_cast<int>(col1.g) + static_cast<int>(col2.g); in operator +()
217 int b = static_cast<int>(col1.b) + static_cast<int>(col2.b); in operator +()
218 int a = static_cast<int>(col1.a) + static_cast<int>(col2.a); in operator +()
229 constexpr RGBA8 operator-(const RGBA8& col1, const RGBA8& col2) { in operator -() argument
230 int r = static_cast<int>(col1.r) - static_cast<int>(col2.r); in operator -()
231 int g = static_cast<int>(col1.g) - static_cast<int>(col2.g); in operator -()
232 int b = static_cast<int>(col1.b) - static_cast<int>(col2.b); in operator -()
233 int a = static_cast<int>(col1.a) - static_cast<int>(col2.a); in operator -()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DColorStateTests.cpp223 constexpr RGBA8 operator+(const RGBA8& col1, const RGBA8& col2) { in operator +() argument
224 int r = static_cast<int>(col1.r) + static_cast<int>(col2.r); in operator +()
225 int g = static_cast<int>(col1.g) + static_cast<int>(col2.g); in operator +()
226 int b = static_cast<int>(col1.b) + static_cast<int>(col2.b); in operator +()
227 int a = static_cast<int>(col1.a) + static_cast<int>(col2.a); in operator +()
238 constexpr RGBA8 operator-(const RGBA8& col1, const RGBA8& col2) { in operator -() argument
239 int r = static_cast<int>(col1.r) - static_cast<int>(col2.r); in operator -()
240 int g = static_cast<int>(col1.g) - static_cast<int>(col2.g); in operator -()
241 int b = static_cast<int>(col1.b) - static_cast<int>(col2.b); in operator -()
242 int a = static_cast<int>(col1.a) - static_cast<int>(col2.a); in operator -()
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
Djfdctfst-neon.c77 int16x8_t col2 = cols_26.val[0]; in jsimd_fdct_ifast_neon() local
93 int16x8_t tmp2 = vaddq_s16(col2, col5); in jsimd_fdct_ifast_neon()
94 int16x8_t tmp5 = vsubq_s16(col2, col5); in jsimd_fdct_ifast_neon()
108 col2 = vaddq_s16(tmp13, z1); /* phase 5 */ in jsimd_fdct_ifast_neon()
134 int16x8x2_t cols_23 = vtrnq_s16(col2, col3); in jsimd_fdct_ifast_neon()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationAPITest.java403 Collator col2 = null; in TestHashCode() local
406 col2 = Collator.getInstance(dk); in TestHashCode()
422 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode()
423 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode()
555 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null;
570 col2 = new RuleBasedCollator(ruleset2);
603 String rule2 = col2.getRules();
822 Collator col2 = new TestCollator();
823 if (col1.equals(col2)) {
826 if (col1.hashCode() != col2.hashCode()) {
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
DCollationAPITest.java406 Collator col2 = null; in TestHashCode() local
409 col2 = Collator.getInstance(dk); in TestHashCode()
425 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode()
426 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode()
558 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null;
573 col2 = new RuleBasedCollator(ruleset2);
606 String rule2 = col2.getRules();
825 Collator col2 = new TestCollator();
826 if (col1.equals(col2)) {
829 if (col1.hashCode() != col2.hashCode()) {
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dapicoll.cpp254 RuleBasedCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local
270 col2 = new RuleBasedCollator(ruleset2, status); in TestRuleBasedColl()
302 UnicodeString rule2 = col2->getRules(); in TestRuleBasedColl()
329 delete col2; in TestRuleBasedColl()
452 Collator *col2 = 0; in TestHashCode() local
454 col2 = Collator::createInstance(dk, success); in TestHashCode()
471 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" ); in TestHashCode()
472 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" ); in TestHashCode()
477 delete col2; in TestHashCode()
839 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success); in TestOperators() local
[all …]
/third_party/icu/tools/multi/proj/provider/
Dcolldiff.cpp125 UCollator *col2 = ucol_openFromShortString(xbuf3, FALSE, NULL, &subStatus); in main() local
135 int32_t len2 = ucol_getSortKey(col2, stuff, -1, bytesb, 200); in main()
/third_party/gstreamer/gstplugins_good/gst/goom2k1/
Dfilters.c372 Color col1, col2, col3, col4; in zoomFilterFastRGB() local
483 getPixelRGB_ (pix1, pos10[position] + 1, &col2, goomdata->resolx, in zoomFilterFastRGB()
491 + col2.r * c[1][position] in zoomFilterFastRGB()
497 + col2.v * c[1][position] in zoomFilterFastRGB()
503 + col2.b * c[1][position] in zoomFilterFastRGB()

123