/external/python/cpython2/Lib/bsddb/test/ |
D | test_dbtables.py | 93 col2 = 'Species' 98 {col0: pickle.dumps(8, 1), col1: 'no', col2: 'Penguin'}, 99 {col0: pickle.dumps(-1, 1), col1: 'no', col2: 'Turkey'}, 100 {col0: pickle.dumps(9, 1), col1: 'yes', col2: 'SR-71A Blackbird'} 105 col1: 'no', col2: 'Penguin'}, 107 col1: 'no', col2: 'Turkey'}, 109 col1: 'yes', col2: 'SR-71A Blackbird'} 116 self.tdb.CreateTable(tabname, [col0, col1, col2]) 122 values = self.tdb.Select(tabname, [col2], 125 values = self.tdb.Select(tabname, [col2],
|
/external/libjpeg-turbo/simd/powerpc/ |
D | jidctfst-altivec.c | 119 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()
|
D | jidctint-altivec.c | 214 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()
|
D | jfdctfst-altivec.c | 93 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()
|
D | jfdctint-altivec.c | 185 col0, col1, col2, col3, col4, col5, col6, col7, in jsimd_fdct_islow_altivec() local 228 tmp2 = vec_add(col2, col5); in jsimd_fdct_islow_altivec() 229 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 | 406 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() 560 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; 575 col2 = new RuleBasedCollator(ruleset2); 608 String rule2 = col2.getRules(); 827 Collator col2 = new TestCollator(); 828 if (col1.equals(col2)) { 831 if (col1.hashCode() != col2.hashCode()) { [all …]
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
D | CollationAPITest.java | 403 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() 557 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; 572 col2 = new RuleBasedCollator(ruleset2); 605 String rule2 = col2.getRules(); 824 Collator col2 = new TestCollator(); 825 if (col1.equals(col2)) { 828 if (col1.hashCode() != col2.hashCode()) { [all …]
|
/external/v8/tools/turbolizer/src/ |
D | disassembly-view.ts | 217 let col2 = PROF_COLS[i + 1].col; variable 222 col.r = Math.round(view.interpolate(val, max, col1.r, col2.r)); 223 col.g = Math.round(view.interpolate(val, max, col1.g, col2.g)); 224 col.b = Math.round(view.interpolate(val, max, col1.b, col2.b));
|
/external/icu/icu4c/source/test/intltest/ |
D | apicoll.cpp | 254 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 …]
|
/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/python/cpython2/Lib/sqlite3/test/ |
D | factory.py | 104 col1, col2 = row["a"], row["b"] 106 self.assertEqual(col2, 2, "by name: wrong result for column 'a'") 108 col1, col2 = row["A"], row["B"] 110 self.assertEqual(col2, 2, "by name: wrong result for column 'B'")
|
/external/python/cpython3/Lib/sqlite3/test/ |
D | factory.py | 104 col1, col2 = row["a"], row["b"] 106 self.assertEqual(col2, 2, "by name: wrong result for column 'a'") 108 col1, col2 = row["A"], row["B"] 110 self.assertEqual(col2, 2, "by name: wrong result for column 'B'")
|
/external/skqp/tools/bookmaker/ |
D | includeParser.h | 348 void writeTableHeader(const char* col1, size_t pad, const char* col2) { in writeTableHeader() argument 360 legend += col2; in writeTableHeader() 375 void writeTableRow(size_t pad1, string col1, size_t pad2, string col2) { in writeTableRow() argument 378 col2 + string(pad2 - col2.length(), ' ') + " ##"; in writeTableRow()
|
D | mdOut.cpp | 2220 void MdOut::rowOut(string col1, const Definition* col2) { in rowOut() argument 2230 TextParser parser(col2->fFileName, col2->fStart, col2->fContentStart, col2->fLineCount); in rowOut() 2235 this->htmlOut(this->anchorRef("#" + col2->fFiddle, methodName)); in rowOut()
|
/external/skia/tools/bookmaker/ |
D | includeParser.h | 348 void writeTableHeader(const char* col1, size_t pad, const char* col2) { in writeTableHeader() argument 360 legend += col2; in writeTableHeader() 375 void writeTableRow(size_t pad1, string col1, size_t pad2, string col2) { in writeTableRow() argument 378 col2 + string(pad2 - col2.length(), ' ') + " ##"; in writeTableRow()
|
D | mdOut.cpp | 2220 void MdOut::rowOut(string col1, const Definition* col2) { in rowOut() argument 2230 TextParser parser(col2->fFileName, col2->fStart, col2->fContentStart, col2->fLineCount); in rowOut() 2235 this->htmlOut(this->anchorRef("#" + col2->fFiddle, methodName)); in rowOut()
|
/external/grpc-grpc/tools/run_tests/performance/ |
D | bq_upload_result.py | 39 (col1, col2, col3) = f.read().split(',') 41 latency90 = float(col2.strip()) * 1000
|
/external/libjpeg-turbo/simd/loongson/ |
D | jfdctint-mmi.c | 237 __m64 col0, col1, col2, col3, col4, col5, col6, col7; \ 271 col2 = _mm_unpacklo_pi32(row01b, row23b); /* col2=(02 12 22 32) */ \ 277 tmp2 = _mm_add_pi16(col2, col5); /* tmp2=col2+col5 */ \ 279 tmp5 = _mm_sub_pi16(col2, col5); /* tmp5=col2-col5 */ \
|
D | jidctint-mmi.c | 438 __m64 col0, col1, col2, col3; \ 531 col2 = _mm_unpacklo_pi32(col23l, col23h); /* col2=(02 12 22 32 42 52 62 72) */ \ 536 _mm_store_si64((__m64 *)(output_buf[ctr + 2] + output_col), col2); \
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | sparse_cross_op_test.py | 208 col2 = [] 213 col2.append(['batch%d-FC2-F1' % b]) 218 self._sparse_tensor(col2),
|
/external/tensorflow/tensorflow/contrib/layers/python/kernel_tests/ |
D | sparse_feature_cross_op_test.py | 207 col2 = [] 212 col2.append(['batch%d-FC2-F1' % b]) 216 self._sparse_tensor(col1), self._sparse_tensor(col2),
|
/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/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/webp/src/enc/ |
D | vp8l_enc.c | 50 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()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateG2xG2.java | 268 RuleBasedCollator col2 = new RuleBasedCollator(rules); in showCollator() local 269 showExample(col2); in showCollator()
|