HomeSort by relevance Sort by last modified time
    Searched full:indexb (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btHashedSimplePairCache.h 27 btSimplePair(int indexA,int indexB)
29 m_indexB(indexB),
74 virtual void* removeOverlappingPair(int indexA,int indexB);
78 virtual btSimplePair* addOverlappingPair(int indexA,int indexB)
82 return internalAddPair(indexA,indexB);
107 btSimplePair* findPair(int indexA,int indexB);
117 btSimplePair* internalAddPair(int indexA, int indexB);
121 SIMD_FORCE_INLINE bool equalsPair(const btSimplePair& pair, int indexA, int indexB)
123 return pair.m_indexA == indexA && pair.m_indexB == indexB;
128 SIMD_FORCE_INLINE unsigned int getHash(unsigned int indexA, unsigned int indexB)
    [all...]
btHashedSimplePairCache.cpp 64 btSimplePair* btHashedSimplePairCache::findPair(int indexA, int indexB)
69 /*if (indexA > indexB)
70 btSwap(indexA, indexB);*/
72 int hash = static_cast<int>(getHash(static_cast<unsigned int>(indexA), static_cast<unsigned int>(indexB)) & (m_overlappingPairArray.capacity()-1));
80 while (index != BT_SIMPLE_NULL_PAIR && equalsPair(m_overlappingPairArray[index], indexA, indexB) == false)
127 int indexB = pair.m_indexB;
129 int hashValue = static_cast<int>(getHash(static_cast<unsigned int>(indexA),static_cast<unsigned int>(indexB)) & (m_overlappingPairArray.capacity()-1)); // New hash value with new mask
138 btSimplePair* btHashedSimplePairCache::internalAddPair(int indexA, int indexB)
141 int hash = static_cast<int>(getHash(static_cast<unsigned int>(indexA),static_cast<unsigned int>(indexB)) & (m_overlappingPairArray.capacity()-1)); // New hash value with new mask
144 btSimplePair* pair = internalFindPair(indexA, indexB, hash)
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/
b2ChainAndCircleContact.cpp 28 b2Contact* b2ChainAndCircleContact::Create(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator)
31 return new (mem) b2ChainAndCircleContact(fixtureA, indexA, fixtureB, indexB);
40 b2ChainAndCircleContact::b2ChainAndCircleContact(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB)
41 : b2Contact(fixtureA, indexA, fixtureB, indexB)
b2ChainAndPolygonContact.cpp 28 b2Contact* b2ChainAndPolygonContact::Create(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator)
31 return new (mem) b2ChainAndPolygonContact(fixtureA, indexA, fixtureB, indexB);
40 b2ChainAndPolygonContact::b2ChainAndPolygonContact(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB)
41 : b2Contact(fixtureA, indexA, fixtureB, indexB)
b2ChainAndCircleContact.h 30 b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator);
33 b2ChainAndCircleContact(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB);
b2ChainAndPolygonContact.h 30 b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator);
33 b2ChainAndPolygonContact(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB);
b2ContactSolver.cpp 37 int32 indexB;
80 vc->indexB = bodyB->m_islandIndex;
92 pc->indexB = bodyB->m_islandIndex;
152 int32 indexB = vc->indexB;
166 b2Vec2 cB = m_positions[indexB].c;
167 float32 aB = m_positions[indexB].a;
168 b2Vec2 vB = m_velocities[indexB].v;
169 float32 wB = m_velocities[indexB].w;
259 int32 indexB = vc->indexB
    [all...]
b2CircleContact.h 30 b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator);
b2EdgeAndCircleContact.h 30 b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/
ParticleContact.java 7 public int indexA, indexB;
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
chart_base_2d_brushable_x.html 33 computeBrushRangeFromIndices: function(indexA, indexB) {
35 indexB = tr.b.clamp(indexB, 0, this.data_.length - 1);
36 var leftIndex = Math.min(indexA, indexB);
37 var rightIndex = Math.max(indexA, indexB);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
ContactID.java 58 public byte indexB;
63 return ((int) indexA) << 24 | ((int) indexB) << 16 | ((int) typeA) << 8 | ((int) typeB);
78 indexB = c.indexB;
85 indexA = indexB;
86 indexB = tempA;
97 indexB = 0;
Distance.java 60 public int indexB; // wB index
68 indexB = sv.indexB;
84 public final int indexB[] = new int[3];
92 indexB[0] = Integer.MAX_VALUE;
93 indexB[1] = Integer.MAX_VALUE;
94 indexB[2] = Integer.MAX_VALUE;
99 System.arraycopy(sc.indexB, 0, indexB, 0, indexB.length)
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2TimeOfImpact.cpp 66 b2Vec2 localPointB = m_proxyB->GetVertex(cache->indexB[0]);
77 b2Vec2 localPointB1 = proxyB->GetVertex(cache->indexB[0]);
78 b2Vec2 localPointB2 = proxyB->GetVertex(cache->indexB[1]);
112 b2Vec2 localPointB = m_proxyB->GetVertex(cache->indexB[0]);
126 float32 FindMinSeparation(int32* indexA, int32* indexB, float32 t) const
140 *indexB = m_proxyB->GetSupport(axisB);
143 b2Vec2 localPointB = m_proxyB->GetVertex(*indexB);
160 *indexB = m_proxyB->GetSupport(axisB);
162 b2Vec2 localPointB = m_proxyB->GetVertex(*indexB);
176 *indexB = -1
    [all...]
b2Distance.cpp 93 int32 indexB; // wB index
111 v->indexB = cache->indexB[i];
113 b2Vec2 wBLocal = proxyB->GetVertex(v->indexB);
138 v->indexB = 0;
157 cache->indexB[i] = uint8(vertices[i].indexB);
481 saveB[i] = vertices[i].indexB;
538 vertex->indexB = proxyB->GetSupport(b2MulT(transformB.q, d));
539 vertex->wB = b2Mul(transformB, proxyB->GetVertex(vertex->indexB));
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btHashedSimplePairCache.java 69 public long removeOverlappingPair(int indexA, int indexB) {
70 return CollisionJNI.btHashedSimplePairCache_removeOverlappingPair(swigCPtr, this, indexA, indexB);
73 public btSimplePair addOverlappingPair(int indexA, int indexB) {
74 long cPtr = CollisionJNI.btHashedSimplePairCache_addOverlappingPair(swigCPtr, this, indexA, indexB);
87 public btSimplePair findPair(int indexA, int indexB) {
88 long cPtr = CollisionJNI.btHashedSimplePairCache_findPair(swigCPtr, this, indexA, indexB);
  /external/libavc/common/
ih264_deblk_tables.h 49 * input : indexA [0-51] & indexB [0-51]
54 * alpha and beta from indexA and indexB
ih264_deblk_tables.c 61 * input : indexA [0-51] & indexB [0-51]
66 * alpha and beta from indexA and indexB
83 /* indexB :: 0-51 inclusive */
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2ContactManager.cpp 114 int32 indexB = c->GetChildIndexB();
154 int32 proxyIdB = fixtureB->m_proxies[indexB].proxyId;
186 int32 indexB = proxyB->childIndex;
210 if (fA == fixtureA && fB == fixtureB && iA == indexA && iB == indexB)
216 if (fA == fixtureB && fB == fixtureA && iA == indexB && iB == indexA)
239 b2Contact* c = b2Contact::Create(fixtureA, indexA, fixtureB, indexB, m_allocator);
249 indexB = c->GetChildIndexB();
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
ContactManager.java 71 int indexB = proxyB.childIndex;
92 if (fA == fixtureA && iA == indexA && fB == fixtureB && iB == indexB) {
97 if (fA == fixtureB && iA == indexB && fB == fixtureA && iB == indexA) {
117 Contact c = pool.popContact(fixtureA, indexA, fixtureB, indexB);
126 indexB = c.getChildIndexB();
240 int indexB = c.getChildIndexB();
276 int proxyIdB = fixtureB.m_proxies[indexB].proxyId;
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/
ContactSolver.java 125 vc.indexB = bodyB.m_islandIndex;
137 pc.indexB = bodyB.m_islandIndex;
183 int indexB = vc.indexB;
192 Vec2 vB = m_velocities[indexB].v;
193 float wB = m_velocities[indexB].w;
212 m_velocities[indexB].w = wB;
233 int indexB = vc.indexB;
247 Vec2 cB = m_positions[indexB].c
    [all...]
ChainAndCircleContact.java 42 public void init(Fixture fA, int indexA, Fixture fB, int indexB) {
43 super.init(fA, indexA, fB, indexB);
ChainAndPolygonContact.java 42 public void init(Fixture fA, int indexA, Fixture fB, int indexB) {
43 super.init(fA, indexA, fB, indexB);
EdgeAndCircleContact.java 41 public void init(Fixture fA, int indexA, Fixture fB, int indexB) {
42 super.init(fA, indexA, fB, indexB);
EdgeAndPolygonContact.java 41 public void init(Fixture fA, int indexA, Fixture fB, int indexB) {
42 super.init(fA, indexA, fB, indexB);

Completed in 1167 milliseconds

1 2 3