/external/ceres-solver/internal/ceres/ |
D | trust_region_minimizer_test.cc | 58 template <bool col1, bool col2, bool col3, bool col4> 64 (col2 ? 1 : 0) + in PowellEvaluator2() 69 << col2 << " " in PowellEvaluator2() 78 CHECK(col1 || col2 || col3 || col4); in CreateJacobian() 140 if (col2) { in Evaluate() 172 if (col2) { in Evaluate() 195 state_plus_delta[1] = (col2 ? state[1] + delta[delta_index++] : state[1]); in Plus() 211 template<bool col1, bool col2, bool col3, bool col4> 222 parameters[1] = (col2 ? parameters[1] : 0.0); in IsTrustRegionSolveSuccessful() 226 PowellEvaluator2<col1, col2, col3, col4> powell_evaluator; in IsTrustRegionSolveSuccessful()
|
/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 | 235 RuleBasedCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 251 col2 = new RuleBasedCollator(ruleset2, status); in TestRuleBasedColl() 283 UnicodeString rule2 = col2->getRules(); in TestRuleBasedColl() 310 delete col2; in TestRuleBasedColl() 433 Collator *col2 = 0; in TestHashCode() local 435 col2 = Collator::createInstance(dk, success); in TestHashCode() 452 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 453 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" ); in TestHashCode() 458 delete col2; in TestHashCode() 820 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success); in TestOperators() local [all …]
|
/external/opencv3/modules/core/src/ |
D | lpsolver.cpp | 90 static void swap_columns(Mat_<double>& A,int col1,int col2); 355 static inline void swap_columns(Mat_<double>& A,int col1,int col2){ in swap_columns() argument 358 A(i,col1)=A(i,col2); in swap_columns() 359 A(i,col2)=tmp; in swap_columns()
|
D | cuda_gpu_mat.cpp | 242 int col2 = std::min(ofs.x + cols + dright, wholeSize.width); in adjustROI() local 246 cols = col2 - col1; in adjustROI()
|
D | umatrix.cpp | 467 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width); in adjustROI() local 469 rows = row2 - row1; cols = col2 - col1; in adjustROI()
|
D | matrix.cpp | 912 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width); in adjustROI() local 914 rows = row2 - row1; cols = col2 - col1; in adjustROI()
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
D | CollationAPITest.java | 387 Collator col2 = null; in TestHashCode() local 390 col2 = Collator.getInstance(dk); in TestHashCode() 406 … doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 407 … doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode() 536 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; 551 col2 = new RuleBasedCollator(ruleset2); 584 String rule2 = col2.getRules(); 798 Collator col2 = new TestCollator(); 799 if (col1.equals(col2)) { 802 if (col1.hashCode() != col2.hashCode()) {
|
D | CollationMiscTest.java | 1607 RuleBasedCollator col2 = new RuleBasedCollator(rule); in TestLocaleRuleBasedCollators() local 1608 if (!col1.equals(col2)) { in TestLocaleRuleBasedCollators()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | CollationAPITest.java | 391 Collator col2 = null; in TestHashCode() local 394 col2 = Collator.getInstance(dk); in TestHashCode() 410 … doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 411 … doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode() 540 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; 555 col2 = new RuleBasedCollator(ruleset2); 588 String rule2 = col2.getRules(); 802 Collator col2 = new TestCollator(); 803 if (col1.equals(col2)) { 806 if (col1.hashCode() != col2.hashCode()) {
|
D | CollationMiscTest.java | 1611 RuleBasedCollator col2 = new RuleBasedCollator(rule); in TestLocaleRuleBasedCollators() local 1612 if (!col1.equals(col2)) { in TestLocaleRuleBasedCollators()
|
/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/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.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/icu/icu4c/source/test/cintltst/ |
D | capitst.c | 448 UCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 469 …col2 = ucol_openRules(ruleset2, u_strlen(ruleset2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &s… in TestRuleBasedColl() 488 rule2 = ucol_getRules(col2, &tempLength); in TestRuleBasedColl() 504 ucol_close(col2); in TestRuleBasedColl() 518 col2 = ucol_open("en_US", &status); in TestRuleBasedColl() 524 iter2 = ucol_openElements(col2, teststr, 3, &status); in TestRuleBasedColl() 547 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
|