/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/ |
D | btConvex2dConvex2dAlgorithm.cpp | 155 …gorithm::calculateTimeOfImpact(btCollisionObject* col0,btCollisionObject* col1,const btDispatcherI… in calculateTimeOfImpact() argument 167 …btScalar squareMot1 = (col1->getInterpolationWorldTransform().getOrigin() - col1->getWorldTransfor… in calculateTimeOfImpact() 170 squareMot1 < col1->getCcdSquareMotionThreshold()) in calculateTimeOfImpact() 185 …btSphereShape sphere1(col1->getCcdSweptSphereRadius()); //todo: allow non-zero sphere sizes, for b… in calculateTimeOfImpact() 193 col1->getWorldTransform(),col1->getInterpolationWorldTransform(),result)) in calculateTimeOfImpact() 201 if (col1->getHitFraction() > result.m_fraction) in calculateTimeOfImpact() 202 col1->setHitFraction( result.m_fraction); in calculateTimeOfImpact() 216 btConvexShape* convex1 = static_cast<btConvexShape*>(col1->getCollisionShape()); in calculateTimeOfImpact() 226 col1->getWorldTransform(),col1->getInterpolationWorldTransform(),result)) in calculateTimeOfImpact() 234 if (col1->getHitFraction() > result.m_fraction) in calculateTimeOfImpact() [all …]
|
D | btConvexConvexAlgorithm.cpp | 689 …gorithm::calculateTimeOfImpact(btCollisionObject* col0,btCollisionObject* col1,const btDispatcherI… in calculateTimeOfImpact() argument 701 …btScalar squareMot1 = (col1->getInterpolationWorldTransform().getOrigin() - col1->getWorldTransfor… in calculateTimeOfImpact() 704 squareMot1 < col1->getCcdSquareMotionThreshold()) in calculateTimeOfImpact() 722 …btSphereShape sphere1(col1->getCcdSweptSphereRadius()); //todo: allow non-zero sphere sizes, for b… in calculateTimeOfImpact() 730 col1->getWorldTransform(),col1->getInterpolationWorldTransform(),result)) in calculateTimeOfImpact() 738 if (col1->getHitFraction() > result.m_fraction) in calculateTimeOfImpact() 739 col1->setHitFraction( result.m_fraction); in calculateTimeOfImpact() 753 btConvexShape* convex1 = static_cast<btConvexShape*>(col1->getCollisionShape()); in calculateTimeOfImpact() 763 col1->getWorldTransform(),col1->getInterpolationWorldTransform(),result)) in calculateTimeOfImpact() 771 if (col1->getHitFraction() > result.m_fraction) in calculateTimeOfImpact() [all …]
|
D | btSphereTriangleCollisionAlgorithm.cpp | 75 …gorithm::calculateTimeOfImpact(btCollisionObject* col0,btCollisionObject* col1,const btDispatcherI… in calculateTimeOfImpact() argument 80 (void)col1; in calculateTimeOfImpact()
|
D | btSphereSphereCollisionAlgorithm.cpp | 97 …gorithm::calculateTimeOfImpact(btCollisionObject* col0,btCollisionObject* col1,const btDispatcherI… in calculateTimeOfImpact() argument 100 (void)col1; in calculateTimeOfImpact()
|
D | btConvexPlaneCollisionAlgorithm.cpp | 165 …gorithm::calculateTimeOfImpact(btCollisionObject* col0,btCollisionObject* col1,const btDispatcherI… in calculateTimeOfImpact() argument 170 (void)col1; in calculateTimeOfImpact()
|
D | btSphereBoxCollisionAlgorithm.cpp | 89 …gorithm::calculateTimeOfImpact(btCollisionObject* col0,btCollisionObject* col1,const btDispatcherI… in calculateTimeOfImpact() argument 94 (void)col1; in calculateTimeOfImpact()
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
D | ShapeRenderer.java | 360 …public void triangle (float x1, float y1, float x2, float y2, float x3, float y3, Color col1, Colo… in triangle() argument 363 renderer.color(col1.r, col1.g, col1.b, col1.a); in triangle() 375 renderer.color(col1.r, col1.g, col1.b, col1.a); in triangle() 378 renderer.color(col1.r, col1.g, col1.b, col1.a); in triangle() 434 …public void rect (float x, float y, float width, float height, Color col1, Color col2, Color col3,… in rect() argument 438 renderer.color(col1.r, col1.g, col1.b, col1.a); in rect() 455 renderer.color(col1.r, col1.g, col1.b, col1.a); in rect() 458 renderer.color(col1.r, col1.g, col1.b, col1.a); in rect() 469 renderer.color(col1.r, col1.g, col1.b, col1.a); in rect() 488 float degrees, Color col1, Color col2, Color col3, Color col4) { in rect() argument [all …]
|
/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;
|
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/ |
D | HexagonalTiledMapRenderer.java | 125 …final int col1 = Math.max(0, (int)(((viewBounds.x - tileWidthLowerCorner) / tileWidthUpperCorner))… in renderTileLayer() local 130 final int colA = (staggerIndexEven == (col1 % 2 == 0)) ? col1 + 1 : col1; in renderTileLayer() 131 final int colB = (staggerIndexEven == (col1 % 2 == 0)) ? col1 : col1 + 1; in renderTileLayer() 151 final int col1 = Math.max(0, (int)(((viewBounds.x - layerTileWidth50) / layerTileWidth))); in renderTileLayer() local 161 for (int col = col1; col < col2; col++) { in renderTileLayer()
|
D | OrthogonalTiledMapRenderer.java | 77 final int col1 = Math.max(0, (int)(viewBounds.x / layerTileWidth)); in renderTileLayer() local 84 float xStart = col1 * layerTileWidth; in renderTileLayer() 89 for (int col = col1; col < col2; col++) { in renderTileLayer()
|
D | IsometricTiledMapRenderer.java | 108 int col1 = (int)(translateScreenToIso(bottomLeft).x / tileWidth) - 2; in renderTileLayer() local 112 for (int col = col1; col <= col2; col++) { in renderTileLayer()
|
D | OrthoCachedTiledMapRenderer.java | 220 final int col1 = Math.max(0, (int)(cacheBounds.x / layerTileWidth)); in renderTileLayer() local 228 canCacheMoreW = col1 > 0; in renderTileLayer() 233 for (int col = col1; col < col2; col++) { in renderTileLayer()
|
/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/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/ |
D | btSoftRigidCollisionAlgorithm.cpp | 74 …gorithm::calculateTimeOfImpact(btCollisionObject* col0,btCollisionObject* col1,const btDispatcherI… in calculateTimeOfImpact() argument 79 (void)col1; in calculateTimeOfImpact()
|
/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 …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | CollationAPITest.java | 254 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestDuplicate() local 266 doAssert(!col1.equals(col3), "Cloned object is equal to some dummy"); in TestDuplicate() 267 col3 = (RuleBasedCollator)col1; in TestDuplicate() 268 doAssert(col1.equals(col3), "Copied object is not equal to the orginal"); in TestDuplicate() 389 Collator col1 = Collator.getInstance(Locale.ENGLISH); in TestHashCode() local 410 … doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" ); in TestHashCode() 411 … doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" ); in TestHashCode() 412 doAssert(col1.hashCode() == col3.hashCode(), "Hash result not equal" ); in TestHashCode() 540 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; 547 col1 = new RuleBasedCollator(ruleset1); [all …]
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | color_space.inl | 115 T col1 = (T(1) - s) * rgbw.g; local 122 result[1][0] = col1; 123 result[1][1] = col1 + s; 124 result[1][2] = col1;
|
/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/autotest/frontend/tko/ |
D | csv_encoder_unittest.py | 74 return dict(col1=col1_value, pass_count=pass_count,
|
/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 | 894 int col1 = 0; in preserves2dAxisAlignment() local 906 col1++; in preserves2dAxisAlignment() 914 col1++; in preserves2dAxisAlignment() 917 if (col0 > 1 || col1 > 1 || row0 > 1 || row1 > 1) { in preserves2dAxisAlignment()
|
/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 65 const uint32_t tmp = *col1; in SwapColor() 66 *col1 = *col2; in SwapColor()
|