Home
last modified time | relevance | path

Searched refs:col1 (Results 1 - 25 of 35) sorted by relevance

12

/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationAPITest.java257 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestDuplicate()
259 // Collator col2 = (Collator)col1.clone(); in TestDuplicate()
260 // doAssert(col1.equals(col2), "Cloned object is not equal to the original"); in TestDuplicate()
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()
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 in TestHashCode()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationAPITest.java260 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestDuplicate()
262 // Collator col2 = (Collator)col1.clone(); in TestDuplicate()
263 // doAssert(col1.equals(col2), "Cloned object is not equal to the orginal"); in TestDuplicate()
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()
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 in TestHashCode()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A 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()
833 RuleBasedCollator *col1 = new RuleBasedCollator(ruleset1, success); TestOperators() local
911 Collator *col1 = Collator::createInstance(Locale::getEnglish(), status); TestDuplicate() local
2249 TestCollator col1; TestSubclass() local
[all...]
/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 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/skia/third_party/externals/libjpeg-turbo/simd/arm/
H A 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()
H A 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()
H A 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()
H A 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/
H A DSkCompressedDataUtils.cpp169 // return t*col0 + (1-t)*col1
170 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/skia/third_party/externals/libjpeg-turbo/simd/i386/
H A Djidctfst-sse2.asm147 pshufd xmm2, xmm0, 0x55 ; xmm2=col1=(01 01 01 01 01 01 01 01)
155 movdqa XMMWORD [wk(0)], xmm2 ; wk(0)=col1
302 punpckhqdq xmm4, xmm1 ; xmm4=col1=(01 11 21 31 41 51 61 71)
310 movdqa XMMWORD [wk(0)], xmm4 ; wk(0)=col1
356 movdqa xmm0, XMMWORD [wk(0)] ; xmm0=col1
364 ; xmm0=col1, xmm5=col3, xmm4=col5, xmm7=col7
H A Djidctred-sse2.asm168 pshufd xmm1, xmm0, 0x50 ; xmm1=[col0 col1]=(00 00 00 00 01 01 01 01)
303 punpckldq xmm1, xmm2 ; xmm1=[col0 col1]=(00 10 20 30 01 11 21 31)
486 paddd xmm4, xmm5 ; xmm4=tmp0[col0 col1 **** col3]
487 paddd xmm0, xmm2 ; xmm0=tmp0[col1 col3 col5 col7]
500 psrad xmm1, (WORD_BIT-CONST_BITS-2) ; xmm1=tmp10[col1 col3 col5 col7]
507 paddd xmm1, xmm0 ; xmm1=data0[col1 col3 col5 col7]=(A1 A3 A5 A7)
509 psubd xmm5, xmm0 ; xmm5=data1[col1 col3 col5 col7]=(B1 B3 B5 B7)
H A Djidctred-mmx.asm565 paddd mm4, mm5 ; mm4=tmp0[col0 col1]
588 paddd mm0, mm2 ; mm0=tmp0[col1 col3]
606 psrad mm2, (WORD_BIT-CONST_BITS-2) ; mm2=tmp10[col1 col3]
620 paddd mm2, mm0 ; mm2=data0[col1 col3]=(A1 A3)
622 psubd mm4, mm0 ; mm4=data1[col1 col3]=(B1 B3)
H A Djidctint-sse2.asm162 pshufd xmm6, xmm5, 0x55 ; xmm6=col1=(01 01 01 01 01 01 01 01)
170 movdqa XMMWORD [wk(8)], xmm6 ; wk(8)=col1
491 punpckhqdq xmm3, xmm0 ; xmm3=col1=(01 11 21 31 41 51 61 71)
499 movdqa XMMWORD [wk(8)], xmm3 ; wk(8)=col1
595 movdqa xmm3, XMMWORD [wk(8)] ; xmm3=col1
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
H A Djidctfst-sse2.asm141 pshufd xmm2, xmm0, 0x55 ; xmm2=col1=(01 01 01 01 01 01 01 01)
149 movdqa XMMWORD [wk(0)], xmm2 ; wk(0)=col1
295 punpckhqdq xmm4, xmm1 ; xmm4=col1=(01 11 21 31 41 51 61 71)
303 movdqa XMMWORD [wk(0)], xmm4 ; wk(0)=col1
349 movdqa xmm0, XMMWORD [wk(0)] ; xmm0=col1
357 ; xmm0=col1, xmm5=col3, xmm4=col5, xmm7=col7
H A Djidctred-sse2.asm162 pshufd xmm1, xmm0, 0x50 ; xmm1=[col0 col1]=(00 00 00 00 01 01 01 01)
296 punpckldq xmm1, xmm2 ; xmm1=[col0 col1]=(00 10 20 30 01 11 21 31)
471 paddd xmm4, xmm5 ; xmm4=tmp0[col0 col1 **** col3]
472 paddd xmm0, xmm2 ; xmm0=tmp0[col1 col3 col5 col7]
485 psrad xmm1, (WORD_BIT-CONST_BITS-2) ; xmm1=tmp10[col1 col3 col5 col7]
492 paddd xmm1, xmm0 ; xmm1=data0[col1 col3 col5 col7]=(A1 A3 A5 A7)
494 psubd xmm5, xmm0 ; xmm5=data1[col1 col3 col5 col7]=(B1 B3 B5 B7)
H A Djidctint-sse2.asm156 pshufd xmm6, xmm5, 0x55 ; xmm6=col1=(01 01 01 01 01 01 01 01)
164 movdqa XMMWORD [wk(8)], xmm6 ; wk(8)=col1
484 punpckhqdq xmm3, xmm0 ; xmm3=col1=(01 11 21 31 41 51 61 71)
492 movdqa XMMWORD [wk(8)], xmm3 ; wk(8)=col1
588 movdqa xmm3, XMMWORD [wk(8)] ; xmm3=col1
/third_party/icu/icu4c/source/test/fuzzer/
H A Dcollator_rulebased_fuzzer.cpp22 icu::LocalPointer<icu::RuleBasedCollator> col1( in LLVMFuzzerTestOneInput()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcapitst.c454 UCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local
466 col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL,&status); in TestRuleBasedColl()
493 rule1 = ucol_getRules(col1, &tempLength); in TestRuleBasedColl()
509 ucol_close(col1); in TestRuleBasedColl()
519 col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status); in TestRuleBasedColl()
529 iter1 = ucol_openElements(col1, teststr, 3, &status); in TestRuleBasedColl()
552 ucol_close(col1); in TestRuleBasedColl()
556 col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status); in TestRuleBasedColl()
562 ucol_close(col1); in TestRuleBasedColl()
/third_party/backends/frontend/
H A Dscanimage.c1674 int col1, col8; in scan_it() local
1676 for(col1 = 0; col1 < parm.bytes_per_line; col1++) in scan_it()
1678 buf8[col1 * 8 + col8] = jpegbuf[col1] & (1 << (8 - col8 - 1)) ? 0 : 0xff; in scan_it()
/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.asm536 JZ GPR0, col1
538 .col1:
/third_party/skia/src/gpu/
H A DGrDataUtils.cpp155 static void create_BC1_block(SkColor col0, SkColor col1, BC1Block* block) { in create_BC1_block() argument
157 block->fColor1 = to565(col1); in create_BC1_block()
/third_party/python/Lib/lib2to3/
H A Drefactor.py645 for type, value, (line0, col0), (line1, col1), line_text in tokens:
653 yield type, value, (line0, col0), (line1, col1), line_text
/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
63 const uint32_t tmp = *col1; in SwapColor()
64 *col1 = *col2; in SwapColor()
/third_party/json/
H A DMakefile154 --indent-col1-comments \

Completed in 32 milliseconds

12