Home
last modified time | relevance | path

Searched refs:col2 (Results 1 - 25 of 26) sorted by relevance

12

/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A 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 in operator -()
253 min(const RGBA8& col1, const RGBA8& col2) min() argument
259 max(const RGBA8& col1, const RGBA8& col2) max() argument
265 mix(const RGBA8& col1, const RGBA8& col2, std::array<float, 4> fac) mix() argument
276 mix(const RGBA8& col1, const RGBA8& col2, const RGBA8& fac) mix() argument
[all...]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationAPITest.java259 // Collator col2 = (Collator)col1.clone(); in TestDuplicate()
260 // doAssert(col1.equals(col2), "Cloned object is not equal to the original"); in TestDuplicate()
403 Collator col2 = null; in TestHashCode()
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; in TestRuleBasedColl()
570 col2 = new RuleBasedCollator(ruleset2); in TestRuleBasedColl()
603 String rule2 = col2.getRules(); in TestRuleBasedColl()
822 Collator col2 in TestSubClass()
[all...]
H A DCollationMiscTest.java1642 RuleBasedCollator col2 = new RuleBasedCollator(rule); in TestLocaleRuleBasedCollators()
1643 if (!col1.equals(col2)) { in TestLocaleRuleBasedCollators()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationAPITest.java262 // Collator col2 = (Collator)col1.clone(); in TestDuplicate()
263 // doAssert(col1.equals(col2), "Cloned object is not equal to the orginal"); in TestDuplicate()
406 Collator col2 = null; in TestHashCode()
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; in TestRuleBasedColl()
573 col2 = new RuleBasedCollator(ruleset2); in TestRuleBasedColl()
606 String rule2 = col2.getRules(); in TestRuleBasedColl()
825 Collator col2 in TestSubClass()
[all...]
H A DCollationMiscTest.java1645 RuleBasedCollator col2 = new RuleBasedCollator(rule); in TestLocaleRuleBasedCollators()
1646 if (!col1.equals(col2)) { in TestLocaleRuleBasedCollators()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
H A 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()
H A Djfdctint-neon.c114 int16x8_t col2 = cols_26.val[0]; in jsimd_fdct_islow_neon() local
127 int16x8_t tmp2 = vaddq_s16(col2, col5); in jsimd_fdct_islow_neon()
128 int16x8_t tmp5 = vsubq_s16(col2, col5); in jsimd_fdct_islow_neon()
151 col2 = vcombine_s16(vrshrn_n_s32(col2_scaled_l, DESCALE_P1), in jsimd_fdct_islow_neon()
233 int16x8x2_t cols_23 = vtrnq_s16(col2, col3); in jsimd_fdct_islow_neon()
H A Djidctfst-neon.c353 int16x8_t col2 = vreinterpretq_s16_s32(cols_26.val[0]); in jsimd_idct_ifast_neon() local
366 int16x8_t tmp13 = vaddq_s16(col2, col6); in jsimd_idct_ifast_neon()
367 int16x8_t col2_sub_col6 = vsubq_s16(col2, col6); in jsimd_idct_ifast_neon()
406 col2 = vaddq_s16(tmp2, tmp5); in jsimd_idct_ifast_neon()
416 int8x16_t cols_23_s8 = vcombine_s8(vqshrn_n_s16(col2, PASS1_BITS + 3), in jsimd_idct_ifast_neon()
H A Djidctred-neon.c431 int16x4_t col2 = vreinterpret_s16_s32(vget_low_s32(cols_0426.val[1])); in jsimd_idct_4x4_neon() local
441 int32x4_t tmp2 = vmull_lane_s16(col2, consts.val[0], 0); in jsimd_idct_4x4_neon()
/third_party/icu/icu4c/source/test/intltest/
H A 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 in TestOperators() local
916 Collator *col2 = col1->clone(); TestDuplicate() local
2250 TestCollator col2; TestSubclass() local
[all...]
/third_party/icu/tools/multi/proj/provider/
H A 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/skia/third_party/externals/libjpeg-turbo/simd/i386/
H A Djidctfst-sse2.asm148 pshufd xmm5, xmm0, 0xAA ; xmm5=col2=(02 02 02 02 02 02 02 02)
304 punpcklqdq xmm5, xmm3 ; xmm5=col2=(02 12 22 32 42 52 62 72)
336 ; xmm6=col0, xmm5=col2, xmm1=col4, xmm3=col6
H A Djidctred-sse2.asm169 pshufd xmm0, xmm0, 0xFA ; xmm0=[col2 col3]=(02 02 02 02 03 03 03 03)
304 punpckhdq xmm0, xmm2 ; xmm0=[col2 col3]=(02 12 22 32 03 13 23 33)
H A Djidctint-sse2.asm163 pshufd xmm1, xmm5, 0xAA ; xmm1=col2=(02 02 02 02 02 02 02 02)
493 punpcklqdq xmm1, xmm2 ; xmm1=col2=(02 12 22 32 42 52 62 72)
528 ; xmm7=col0, xmm1=col2, xmm0=col4, xmm2=col6
H A Djfdctint-sse2.asm374 movdqa xmm0, XMMWORD [wk(4)] ; xmm0=col2
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
H A Djidctfst-sse2.asm142 pshufd xmm5, xmm0, 0xAA ; xmm5=col2=(02 02 02 02 02 02 02 02)
297 punpcklqdq xmm5, xmm3 ; xmm5=col2=(02 12 22 32 42 52 62 72)
329 ; xmm6=col0, xmm5=col2, xmm1=col4, xmm3=col6
H A Djidctred-sse2.asm163 pshufd xmm0, xmm0, 0xFA ; xmm0=[col2 col3]=(02 02 02 02 03 03 03 03)
297 punpckhdq xmm0, xmm2 ; xmm0=[col2 col3]=(02 12 22 32 03 13 23 33)
H A Djidctint-sse2.asm157 pshufd xmm1, xmm5, 0xAA ; xmm1=col2=(02 02 02 02 02 02 02 02)
486 punpcklqdq xmm1, xmm2 ; xmm1=col2=(02 12 22 32 42 52 62 72)
521 ; xmm7=col0, xmm1=col2, xmm0=col4, xmm2=col6
H A Djfdctint-sse2.asm364 movdqa xmm0, XMMWORD [wk(4)] ; xmm0=col2
/third_party/icu/icu4c/source/test/cintltst/
H A Dcapitst.c454 UCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local
475 col2 = ucol_openRules(ruleset2, u_strlen(ruleset2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status); in TestRuleBasedColl()
494 rule2 = ucol_getRules(col2, &tempLength); in TestRuleBasedColl()
510 ucol_close(col2); in TestRuleBasedColl()
524 col2 = ucol_open("en_US", &status); in TestRuleBasedColl()
530 iter2 = ucol_openElements(col2, teststr, 3, &status); in TestRuleBasedColl()
553 ucol_close(col2); in TestRuleBasedColl()
/third_party/python/Lib/tkinter/test/test_tkinter/
H A Dtest_misc.py205 def assertApprox(col1, col2):
208 for col1_channel, col2_channel in zip(col1, col2):
/third_party/ffmpeg/libavcodec/x86/
H A Dxvididct.asm553 JZ GPR2, col2
556 .col2:
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dvp8l_enc.c50 static WEBP_INLINE uint32_t PaletteColorDistance(uint32_t col1, uint32_t col2) { in PaletteColorDistance() argument
51 const uint32_t diff = VP8LSubPixels(col1, col2); in PaletteColorDistance()
62 static WEBP_INLINE void SwapColor(uint32_t* const col1, uint32_t* const col2) { in SwapColor() argument
64 *col1 = *col2; in SwapColor()
65 *col2 = tmp; in SwapColor()
/third_party/python/Lib/tkinter/
H A D__init__.py1776 def grid_bbox(self, column=None, row=None, col2=None, row2=None):
1791 if col2 is not None and row2 is not None:
1792 args = args + (col2, row2)
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DOutputASM.cpp1031 int col2 = (isCofactor && (col <= 2)) ? 3 : 2; in emitDeterminant() local
1034 Instruction *det = emit(sw::Shader::OPCODE_DET3, result, outCol, arg, col0, arg, negate ? col2 : col1, arg, negate ? col1 : col2); in emitDeterminant()

Completed in 42 milliseconds

12