Home
last modified time | relevance | path

Searched refs:col1 (Results 1 – 25 of 40) sorted by relevance

12

/third_party/skia/third_party/externals/tint/test/shader_io/
Dshared_struct_different_stages.wgsl.expected.glsl5 float col1;
10 float col1;
21 float col1;
29 wrapper_result.col1 = inner_result.col1;
34 out float col1;
39 col1 = outputs.col1;
50 float col1;
55 float col1;
60 float col1;
66 float r = colors.col1;
[all …]
Dshared_struct_different_stages.wgsl.expected.msl5 float col1;
10 float col1 [[user(locn1)]];
15 float col1 [[user(locn1)]];
20 Interface const tint_symbol_3 = {.col1=0.400000006f, .col2=0.600000024f, .pos=float4()};
27 wrapper_result.col1 = inner_result.col1;
34 float const r = colors.col1;
39 Interface const tint_symbol_4 = {.col1=tint_symbol_1.col1, .col2=tint_symbol_1.col2, .pos=pos};
Dshared_struct_different_stages.wgsl.expected.hlsl2 float col1;
7 float col1 : TEXCOORD1;
20 wrapper_result.col1 = inner_result.col1;
27 float col1 : TEXCOORD1;
33 const float r = colors.col1;
38 const Interface tint_symbol_4 = {tint_symbol_1.col1, tint_symbol_1.col2, tint_symbol_1.pos};
Dshared_struct_different_stages.wgsl2 [[location(1)]] col1 : f32;
14 let r : f32 = colors.col1;
Dshared_struct_different_stages.wgsl.expected.wgsl3 col1 : f32;
17 let r : f32 = colors.col1;
Dshared_struct_different_stages.wgsl.expected.spvasm19 OpMemberName %Interface 0 "col1"
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
DCollationAPITest.java260 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestDuplicate() local
272 doAssert(!col1.equals(col3), "Cloned object is equal to some dummy"); in TestDuplicate()
273 col3 = (RuleBasedCollator)col1; in TestDuplicate()
274 doAssert(col1.equals(col3), "Copied object is not equal to the orginal"); in TestDuplicate()
404 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestHashCode() local
425 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode()
426 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode()
427 doAssert(col1.hashCode() == col3.hashCode(), "Hash result not equal" ); in TestHashCode()
558 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null;
565 col1 = new RuleBasedCollator(ruleset1);
[all …]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationAPITest.java257 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestDuplicate() local
269 doAssert(!col1.equals(col3), "Cloned object is equal to some dummy"); in TestDuplicate()
270 col3 = (RuleBasedCollator)col1; in TestDuplicate()
271 doAssert(col1.equals(col3), "Copied object is not equal to the original"); in TestDuplicate()
401 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestHashCode() local
422 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode()
423 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode()
424 doAssert(col1.hashCode() == col3.hashCode(), "Hash result not equal" ); in TestHashCode()
555 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null;
562 col1 = new RuleBasedCollator(ruleset1);
[all …]
/third_party/gstreamer/gstplugins_good/gst/goom/
Dppc_zoom_ultimate.s120 lwz r25,0(r2) ; Loads col1 -> r25
125 and r8, r25,r12 ; Masks col1 channels 1 & 3 : 0x00XX00XX
127 andi. r25,r25,0xFF00 ; Masks col1 channel 2 : 0x0000XX00
128 mullw r8, r8, r21 ; Applies coef1 on col1 channels 1 & 3
135 mullw r25,r25,r21 ; Applies coef1 on col1 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 …]
Dfilters.c460 Color col1, col2, col3, col4; in c_zoom() local
482 getPixelRGB_ (expix1, pos, &col1); in c_zoom()
493 couleur.r = col1.r * c1 + col2.r * c2 + col3.r * c3 + col4.r * c4; in c_zoom()
498 couleur.v = col1.v * c1 + col2.v * c2 + col3.v * c3 + col4.v * c4; in c_zoom()
503 couleur.b = col1.b * c1 + col2.b * c2 + col3.b * c3 + col4.b * c4; in c_zoom()
/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/icu/icu4c/source/test/intltest/
Dapicoll.cpp254 RuleBasedCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local
260 col1 = new RuleBasedCollator(ruleset1, status); in TestRuleBasedColl()
301 UnicodeString rule1 = col1->getRules(); in TestRuleBasedColl()
328 delete col1; in TestRuleBasedColl()
444 Collator *col1 = 0; in TestHashCode() local
445 col1 = Collator::createInstance(Locale::getEnglish(), 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()
473 doAssert(col1->hashCode() == col3->hashCode(), "Hash result not equal" ); in TestHashCode()
476 delete col1; in TestHashCode()
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
Djfdctfst-neon.c76 int16x8_t col1 = cols_15.val[0]; in jsimd_fdct_ifast_neon() local
91 int16x8_t tmp1 = vaddq_s16(col1, col6); in jsimd_fdct_ifast_neon()
92 int16x8_t tmp6 = vsubq_s16(col1, col6); in jsimd_fdct_ifast_neon()
129 col1 = vaddq_s16(z11, z4); in jsimd_fdct_ifast_neon()
133 int16x8x2_t cols_01 = vtrnq_s16(col0, col1); in jsimd_fdct_ifast_neon()
Djfdctint-neon.c113 int16x8_t col1 = cols_15.val[0]; in jsimd_fdct_islow_neon() local
125 int16x8_t tmp1 = vaddq_s16(col1, col6); in jsimd_fdct_islow_neon()
126 int16x8_t tmp6 = vsubq_s16(col1, col6); in jsimd_fdct_islow_neon()
228 col1 = vcombine_s16(vrshrn_n_s32(tmp7_l, DESCALE_P1), in jsimd_fdct_islow_neon()
232 int16x8x2_t cols_01 = vtrnq_s16(col0, col1); in jsimd_fdct_islow_neon()
Djidctfst-neon.c352 int16x8_t col1 = vreinterpretq_s16_s32(cols_15.val[0]); in jsimd_idct_ifast_neon() local
380 int16x8_t z11 = vaddq_s16(col1, col7); in jsimd_idct_ifast_neon()
381 int16x8_t z12 = vsubq_s16(col1, col7); in jsimd_idct_ifast_neon()
404 col1 = vaddq_s16(tmp1, tmp6); in jsimd_idct_ifast_neon()
413 vqshrn_n_s16(col1, PASS1_BITS + 3)); in jsimd_idct_ifast_neon()
Djidctred-neon.c430 int16x4_t col1 = vreinterpret_s16_s32(vget_low_s32(cols_1537.val[0])); in jsimd_idct_4x4_neon() local
451 tmp0 = vmlal_lane_s16(tmp0, col1, consts.val[1], 1); in jsimd_idct_4x4_neon()
456 tmp2 = vmlal_lane_s16(tmp2, col1, consts.val[2], 1); in jsimd_idct_4x4_neon()
/third_party/skia/src/core/
DSkCompressedDataUtils.cpp170 static SkPMColor lerp(float t, SkPMColor col0, SkPMColor col1) { in lerp() argument
171 SkASSERT(SkGetPackedA32(col0) == 0xFF && SkGetPackedA32(col1) == 0xFF); in lerp()
174 uint8_t r8 = SkScalarRoundToInt(t * SkGetPackedR32(col0) + (1.0f - t) * SkGetPackedR32(col1)); in lerp()
175 uint8_t g8 = SkScalarRoundToInt(t * SkGetPackedG32(col0) + (1.0f - t) * SkGetPackedG32(col1)); in lerp()
176 uint8_t b8 = SkScalarRoundToInt(t * SkGetPackedB32(col0) + (1.0f - t) * SkGetPackedB32(col1)); in lerp()
/third_party/gstreamer/gstplugins_good/gst/goom2k1/
Dfilters.c372 Color col1, col2, col3, col4; in zoomFilterFastRGB() local
481 getPixelRGB_ (pix1, pos10[position], &col1, goomdata->resolx, in zoomFilterFastRGB()
490 couleur.r = col1.r * c[0][position] in zoomFilterFastRGB()
496 couleur.v = col1.v * c[0][position] in zoomFilterFastRGB()
502 couleur.b = col1.b * c[0][position] in zoomFilterFastRGB()
/third_party/node/deps/v8/tools/turbolizer/src/
Ddisassembly-view.ts359 const col1 = PROF_COLS[i].col; constant
365 col.r = Math.round(interpolate(val, max, col1.r, col2.r));
366 col.g = Math.round(interpolate(val, max, col1.g, col2.g));
367 col.b = Math.round(interpolate(val, max, col1.b, col2.b));
/third_party/icu/icu4c/source/test/fuzzer/
Dcollator_rulebased_fuzzer.cpp22 icu::LocalPointer<icu::RuleBasedCollator> col1( in LLVMFuzzerTestOneInput() local
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DOES_compressed_ETC1_RGB8_texture.txt244 | base col1 | base col2 | base col1 | base col2 |
250 | base col1 | base col2 | table | table |diff|flip|
259 | base col1 | dcol 2 | base col1 | dcol 2 |
/third_party/openGLES/extensions/OES/
DOES_compressed_ETC1_RGB8_texture.txt254 | base col1 | base col2 | base col1 | base col2 |
260 | base col1 | base col2 | table | table |diff|flip|
269 | base col1 | dcol 2 | base col1 | dcol 2 |
/third_party/icu/icu4c/source/test/cintltst/
Dcapitst.c454 UCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local
466col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL,&sta… in TestRuleBasedColl()
493 rule1 = ucol_getRules(col1, &tempLength); in TestRuleBasedColl()
509 ucol_close(col1); in TestRuleBasedColl()
519col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &st… in TestRuleBasedColl()
529 iter1 = ucol_openElements(col1, teststr, 3, &status); in TestRuleBasedColl()
552 ucol_close(col1); in TestRuleBasedColl()
556col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &st… in TestRuleBasedColl()
562 ucol_close(col1); in TestRuleBasedColl()
/third_party/python/Lib/tkinter/test/test_tkinter/
Dtest_misc.py204 def assertApprox(col1, col2): argument
207 for col1_channel, col2_channel in zip(col1, col2):
/third_party/python/Lib/lib2to3/
Drefactor.py645 for type, value, (line0, col0), (line1, col1), line_text in tokens:
653 yield type, value, (line0, col0), (line1, col1), line_text

12