/external/ceres-solver/internal/ceres/ |
D | trust_region_minimizer_test.cc | 58 template <bool col1, bool col2, bool col3, bool col4> 63 (col1 ? 1 : 0) + in PowellEvaluator2() 68 << col1 << " " in PowellEvaluator2() 78 CHECK(col1 || col2 || col3 || col4); in CreateJacobian() 133 if (col1) { in Evaluate() 168 if (col1) { in Evaluate() 194 state_plus_delta[0] = (col1 ? state[0] + delta[delta_index++] : state[0]); in Plus() 211 template<bool col1, bool col2, bool col3, bool col4> 221 parameters[0] = (col1 ? parameters[0] : 0.0); in IsTrustRegionSolveSuccessful() 226 PowellEvaluator2<col1, col2, col3, col4> powell_evaluator; in IsTrustRegionSolveSuccessful()
|
/external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/ |
D | Terrain.frag | 33 vec4 col1 = texture2D( m_Tex1, coords.yz * m_Tex1Scale ); 37 vec4 tex1 = col1 * blending.x + col2 * blending.y + col3 * blending.z; 39 col1 = texture2D( m_Tex2, coords.yz * m_Tex2Scale ); 43 vec4 tex2 = col1 * blending.x + col2 * blending.y + col3 * blending.z; 45 col1 = texture2D( m_Tex3, coords.yz * m_Tex3Scale ); 49 vec4 tex3 = col1 * blending.x + col2 * blending.y + col3 * blending.z;
|
D | TerrainLighting.frag | 342 vec4 col1 = texture2D( map, coords.yz * scale); 346 vec4 tex = col1 * blending.x + col2 * blending.y + col3 * blending.z;
|
/external/icu/icu4c/source/test/intltest/ |
D | apicoll.cpp | 235 RuleBasedCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 241 col1 = new RuleBasedCollator(ruleset1, status); in TestRuleBasedColl() 282 UnicodeString rule1 = col1->getRules(); in TestRuleBasedColl() 309 delete col1; in TestRuleBasedColl() 425 Collator *col1 = 0; in TestHashCode() local 426 col1 = Collator::createInstance(Locale::getEnglish(), 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() 454 doAssert(col1->hashCode() == col3->hashCode(), "Hash result not equal" ); in TestHashCode() 457 delete col1; in TestHashCode() [all …]
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
D | CollationAPITest.java | 250 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestDuplicate() local 262 doAssert(!col1.equals(col3), "Cloned object is equal to some dummy"); in TestDuplicate() 263 col3 = (RuleBasedCollator)col1; in TestDuplicate() 264 doAssert(col1.equals(col3), "Copied object is not equal to the orginal"); in TestDuplicate() 385 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestHashCode() local 406 … doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 407 … doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode() 408 doAssert(col1.hashCode() == col3.hashCode(), "Hash result not equal" ); in TestHashCode() 536 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; 543 col1 = new RuleBasedCollator(ruleset1); [all …]
|
D | CollationMiscTest.java | 1600 RuleBasedCollator col1 = in TestLocaleRuleBasedCollators() local 1602 if (!rule.equals(col1.getRules())) { in TestLocaleRuleBasedCollators() 1608 if (!col1.equals(col2)) { in TestLocaleRuleBasedCollators()
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | SipHashFunctionTest.java | 147 byte[] col1 = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x80 }; in testCollisionsDueToIncorrectSignExtension() 152 SIP_WITH_KEY.hashBytes(col1), in testCollisionsDueToIncorrectSignExtension()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/ |
D | TextureBlenderDDS.java | 59 int col1 = RGB565.RGB565_to_ARGB8(data.getShort()); in blend() local 61 colors[1].fromARGB8(col1); in blend()
|
/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/icu/icu4c/source/test/cintltst/ |
D | capitst.c | 448 UCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 460 …col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL,&sta… in TestRuleBasedColl() 487 rule1 = ucol_getRules(col1, &tempLength); in TestRuleBasedColl() 503 ucol_close(col1); in TestRuleBasedColl() 513 …col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &st… in TestRuleBasedColl() 523 iter1 = ucol_openElements(col1, teststr, 3, &status); in TestRuleBasedColl() 546 ucol_close(col1); in TestRuleBasedColl() 550 …col1 = ucol_openRules(ruleset1, u_strlen(ruleset1), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &st… in TestRuleBasedColl() 556 ucol_close(col1); in TestRuleBasedColl()
|
/external/skia/src/utils/ |
D | SkMatrix44.cpp | 870 int col1 = 0; in preserves2dAxisAlignment() local 882 col1++; in preserves2dAxisAlignment() 890 col1++; in preserves2dAxisAlignment() 893 if (col0 > 1 || col1 > 1 || row0 > 1 || row1 > 1) { in preserves2dAxisAlignment()
|
/external/opencv/cvaux/src/ |
D | cvlmeds.cpp | 345 int row1, row2, col1, col2; in icvMinor() local 353 col1 = (x == 0 ? 1 : 0); in icvMinor() 356 value = M[row1 * 3 + col1] * M[row2 * 3 + col2] - M[row2 * 3 + col1] * M[row1 * 3 + col2]; in icvMinor()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_span.c | 836 GLfloat (*col1)[4] = span->array->attribs[FRAG_ATTRIB_COL1]; in add_specular() local 866 col0[i][0] += col1[i][0]; in add_specular() 867 col0[i][1] += col1[i][1]; in add_specular() 868 col0[i][2] += col1[i][2]; in add_specular()
|
/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
|