/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/ |
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/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/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/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/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/tensorflow/tensorflow/python/kernel_tests/ |
D | sparse_cross_op_test.py | 198 col2 = [] 203 col2.append(['batch%d-FC2-F1' % b]) 207 self._sparse_tensor(col1), 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 | 52 static WEBP_INLINE uint32_t PaletteColorDistance(uint32_t col1, uint32_t col2) { in PaletteColorDistance() argument 53 const uint32_t diff = VP8LSubPixels(col1, col2); in PaletteColorDistance() 64 static WEBP_INLINE void SwapColor(uint32_t* const col1, uint32_t* const col2) { in SwapColor() argument 66 *col1 = *col2; in SwapColor() 67 *col2 = tmp; in SwapColor()
|
/external/skqp/tools/bookmaker/ |
D | bookmaker.h | 1685 void writeTableHeader(const char* col1, size_t pad, const char* col2) { in writeTableHeader() argument 1697 legend += col2; in writeTableHeader() 1712 void writeTableRow(size_t pad1, const string& col1, size_t pad2, const string& col2) { in writeTableRow() argument 1715 col2 + string(pad2 - col2.length(), ' ') + " ##"; in writeTableRow()
|
/external/skia/tools/bookmaker/ |
D | bookmaker.h | 1716 void writeTableHeader(const char* col1, size_t pad, const char* col2) { in writeTableHeader() argument 1728 legend += col2; in writeTableHeader() 1743 void writeTableRow(size_t pad1, const string& col1, size_t pad2, const string& col2) { in writeTableRow() argument 1746 col2 + string(pad2 - col2.length(), ' ') + " ##"; in writeTableRow()
|
/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/python/cpython2/Lib/plat-irix5/ |
D | flp.py | 392 obj.col2 = odata.Colors[1]
|
/external/python/cpython2/Lib/plat-irix6/ |
D | flp.py | 391 obj.col2 = odata.Colors[1]
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | intrinsic_matrix.inl | 382 // col2 728 // col2 949 // col2
|
/external/tensorflow/tensorflow/docs_src/api_guides/python/ |
D | reading_data.md | 117 col1, col2, col3, col4, col5 = tf.decode_csv( 119 features = tf.stack([col1, col2, col3, col4])
|