/external/libjpeg-turbo/simd/ |
D | jidctfst-altivec.c | 121 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_idct_ifast_altivec() local 143 col2 = vec_ld(32, coef_block); in jsimd_idct_ifast_altivec() 150 tmp1 = vec_or(col1, col2); in jsimd_idct_ifast_altivec() 183 col2 = vec_mladd(col2, quant2, pw_zero); in jsimd_idct_ifast_altivec() 222 outb = vec_packs(col2, col2); in jsimd_idct_ifast_altivec()
|
D | jidctint-altivec.c | 216 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_idct_islow_altivec() local 252 col2 = vec_ld(32, coef_block); in jsimd_idct_islow_altivec() 259 tmp1 = vec_or(col1, col2); in jsimd_idct_islow_altivec() 294 col2 = vec_mladd(col2, quant2, pw_zero); in jsimd_idct_islow_altivec() 324 outb = vec_packs(col2, col2); in jsimd_idct_islow_altivec()
|
D | jfdctfst-altivec.c | 95 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_fdct_ifast_altivec() local 126 tmp2 = vec_add(col2, col5); in jsimd_fdct_ifast_altivec() 127 tmp5 = vec_sub(col2, col5); in jsimd_fdct_ifast_altivec()
|
D | jfdctint-altivec.c | 189 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_fdct_islow_altivec() local 232 tmp2 = vec_add(col2, col5); in jsimd_fdct_islow_altivec() 233 tmp5 = vec_sub(col2, col5); in jsimd_fdct_islow_altivec()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | CollationAPITest.java | 401 Collator col2 = null; in TestHashCode() local 404 col2 = Collator.getInstance(dk); in TestHashCode() 420 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 421 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 …]
|
D | CollationMiscTest.java | 1643 RuleBasedCollator col2 = new RuleBasedCollator(rule); in TestLocaleRuleBasedCollators() local 1644 if (!col1.equals(col2)) { in TestLocaleRuleBasedCollators()
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
D | CollationAPITest.java | 400 Collator col2 = null; in TestHashCode() local 403 col2 = Collator.getInstance(dk); in TestHashCode() 419 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 420 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode() 554 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; 569 col2 = new RuleBasedCollator(ruleset2); 602 String rule2 = col2.getRules(); 821 Collator col2 = new TestCollator(); 822 if (col1.equals(col2)) { 825 if (col1.hashCode() != col2.hashCode()) { [all …]
|
D | CollationMiscTest.java | 1642 RuleBasedCollator col2 = new RuleBasedCollator(rule); in TestLocaleRuleBasedCollators() local 1643 if (!col1.equals(col2)) { in TestLocaleRuleBasedCollators()
|
/external/v8/tools/turbolizer/ |
D | disassembly-view.js | 244 let col2 = PROF_COLS[i + 1].col; 249 col.r = Math.round(view.interpolate(val, max, col1.r, col2.r)); 250 col.g = Math.round(view.interpolate(val, max, col1.g, col2.g)); 251 col.b = Math.round(view.interpolate(val, max, col1.b, col2.b));
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | color_space.inl | 116 T col2 = (T(1) - s) * rgbw.b; local 125 result[2][0] = col2; 126 result[2][1] = col2; 127 result[2][2] = col2 + s;
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | SipHashFunctionTest.java | 148 byte[] col2 = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81 }; in testCollisionsDueToIncorrectSignExtension() 153 SIP_WITH_KEY.hashBytes(col2), in testCollisionsDueToIncorrectSignExtension()
|
/external/icu/icu4c/source/test/intltest/ |
D | apicoll.cpp | 237 RuleBasedCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 253 col2 = new RuleBasedCollator(ruleset2, status); in TestRuleBasedColl() 285 UnicodeString rule2 = col2->getRules(); in TestRuleBasedColl() 312 delete col2; in TestRuleBasedColl() 435 Collator *col2 = 0; in TestHashCode() local 437 col2 = Collator::createInstance(dk, success); in TestHashCode() 454 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 455 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" ); in TestHashCode() 460 delete col2; in TestHashCode() 822 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success); in TestOperators() local [all …]
|
/external/opencv/cvaux/src/ |
D | cvtexture.cpp | 316 int col2, row2; in icvCreateGLCM_LookupTable_8u_C1R() local 318 col2 = colLoop + steps[stepLoop*2 + 1]; in icvCreateGLCM_LookupTable_8u_C1R() 320 if( col2>=0 && row2>=0 && col2<srcImageSize.width && row2<srcImageSize.height ) in icvCreateGLCM_LookupTable_8u_C1R()
|
D | cvlmeds.cpp | 345 int row1, row2, col1, col2; in icvMinor() local 354 col2 = (x == 2 ? 1 : 2); in icvMinor() 356 value = M[row1 * 3 + col1] * M[row2 * 3 + col2] - M[row2 * 3 + col1] * M[row1 * 3 + col2]; in icvMinor()
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_diamond_search_sad_avx.c | 206 const int32_t col2 = _mm_extract_epi16(v_diff_mv_w, 5); in vp9_diamond_search_sad_avx() local 213 const uint32_t cost2 = x->nmvsadcost[0][row2] + x->nmvsadcost[0][col2]; in vp9_diamond_search_sad_avx()
|
/external/opencv/cvaux/include/ |
D | cvmat.hpp | 533 CvMAT colrange( int col1, int col2 ) const; 638 CvMAT colrange( int col1, int col2 ) const; 1444 inline CvMAT CvMAT::colrange( int col1, int col2 ) const 1446 assert( 0 <= col1 && col1 < col2 && col2 <= width ); 1447 return CvMAT( *this, cvRect( col1, 0, col2 - col1, height )); 2092 inline CvMAT _CvMAT_BASE_OP_::colrange( int col1, int col2 ) const 2095 assert( 0 <= col1 && col1 < col2 && col2 <= m.width ); 2096 return CvMAT( m, cvRect( col1, 0, col2 - col1, m.height ));
|
/external/webp/src/enc/ |
D | vp8l_enc.c | 53 static WEBP_INLINE uint32_t PaletteColorDistance(uint32_t col1, uint32_t col2) { in PaletteColorDistance() argument 54 const uint32_t diff = VP8LSubPixels(col1, col2); in PaletteColorDistance() 65 static WEBP_INLINE void SwapColor(uint32_t* const col1, uint32_t* const col2) { in SwapColor() argument 67 *col1 = *col2; in SwapColor() 68 *col2 = tmp; in SwapColor()
|
/external/icu/icu4c/source/test/cintltst/ |
D | capitst.c | 450 UCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 471 …col2 = ucol_openRules(ruleset2, u_strlen(ruleset2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &s… in TestRuleBasedColl() 490 rule2 = ucol_getRules(col2, &tempLength); in TestRuleBasedColl() 506 ucol_close(col2); in TestRuleBasedColl() 520 col2 = ucol_open("en_US", &status); in TestRuleBasedColl() 526 iter2 = ucol_openElements(col2, teststr, 3, &status); in TestRuleBasedColl() 549 ucol_close(col2); in TestRuleBasedColl()
|
/external/eigen/doc/ |
D | QuickReference.dox | 332 col2 = mat1 * col1; 345 scalar = col1.adjoint() * col2; 346 scalar = (col1.adjoint() * col2).value();\endcode 350 mat = col1 * col2.transpose();\endcode
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | intrinsic_matrix.inl | 382 // col2 728 // col2 949 // col2
|
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.cpp | 888 int col2 = (isCofactor && (col <= 2)) ? 3 : 2; in emitDeterminant() local 891 …der::OPCODE_DET3, result, outCol, arg, col0, arg, negate ? col2 : col1, arg, negate ? col1 : col2); in emitDeterminant()
|
/external/guice/extensions/struts2/lib/ |
D | struts2-core-2.2.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |