HomeSort by relevance Sort by last modified time
    Searched refs:lastPairIndex (Results 1 - 3 of 3) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btHashedSimplePairCache.cpp 223 int lastPairIndex = m_overlappingPairArray.size() - 1;
226 if (lastPairIndex == pairIndex)
233 const btSimplePair* last = &m_overlappingPairArray[lastPairIndex];
241 while (index != lastPairIndex)
249 btAssert(m_next[previous] == lastPairIndex);
250 m_next[previous] = m_next[lastPairIndex];
254 m_hashTable[lastHash] = m_next[lastPairIndex];
258 m_overlappingPairArray[pairIndex] = m_overlappingPairArray[lastPairIndex];
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btHashMap.h 332 int lastPairIndex = m_valueArray.size() - 1;
335 if (lastPairIndex == pairIndex)
343 int lastHash = m_keyArray[lastPairIndex].getHash() & (m_valueArray.capacity()-1);
349 while (index != lastPairIndex)
357 btAssert(m_next[previous] == lastPairIndex);
358 m_next[previous] = m_next[lastPairIndex];
362 m_hashTable[lastHash] = m_next[lastPairIndex];
366 m_valueArray[pairIndex] = m_valueArray[lastPairIndex];
367 m_keyArray[pairIndex] = m_keyArray[lastPairIndex];
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btOverlappingPairCache.cpp 327 int lastPairIndex = m_overlappingPairArray.size() - 1;
333 if (lastPairIndex == pairIndex)
340 const btBroadphasePair* last = &m_overlappingPairArray[lastPairIndex];
348 while (index != lastPairIndex)
356 btAssert(m_next[previous] == lastPairIndex);
357 m_next[previous] = m_next[lastPairIndex];
361 m_hashTable[lastHash] = m_next[lastPairIndex];
365 m_overlappingPairArray[pairIndex] = m_overlappingPairArray[lastPairIndex];

Completed in 155 milliseconds