Home
last modified time | relevance | path

Searched refs:proxyId1 (Results 1 – 25 of 39) sorted by relevance

12

/dports/devel/love07/love-HEAD/src/modules/physics/box2d/Source/Collision/
H A Db2PairManager.cpp40 return pair.proxyId1 == proxyId1 && pair.proxyId2 == proxyId2; in Equals()
45 return pair1.proxyId1 == pair2.proxyId1 && pair1.proxyId2 == pair2.proxyId2; in Equals()
51 if (pair1.proxyId1 < pair2.proxyId1) in operator <()
56 if (pair1.proxyId1 == pair2.proxyId1) in operator <()
114 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in Find()
124 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in AddPair()
140 pair->proxyId1 = (uint16)proxyId1; in AddPair()
158 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in RemovePair()
225 m_pairBuffer[m_pairBufferCount].proxyId1 = pair->proxyId1; in AddBufferedPair()
262 m_pairBuffer[m_pairBufferCount].proxyId1 = pair->proxyId1; in RemoveBufferedPair()
[all …]
H A Db2PairManager.h60 uint16 proxyId1; member
68 uint16 proxyId1; member
93 void AddBufferedPair(int32 proxyId1, int32 proxyId2);
94 void RemoveBufferedPair(int32 proxyId1, int32 proxyId2);
99 b2Pair* Find(int32 proxyId1, int32 proxyId2);
100 b2Pair* Find(int32 proxyId1, int32 proxyId2, uint32 hashValue);
102 b2Pair* AddPair(int32 proxyId1, int32 proxyId2);
103 void* RemovePair(int32 proxyId1, int32 proxyId2);
/dports/devel/love5/love-0.5-0/src/box2d/Source/Collision/
H A Db2PairManager.cpp40 return pair.proxyId1 == proxyId1 && pair.proxyId2 == proxyId2; in Equals()
45 return pair1.proxyId1 == pair2.proxyId1 && pair1.proxyId2 == pair2.proxyId2; in Equals()
51 if (pair1.proxyId1 < pair2.proxyId1) in operator <()
56 if (pair1.proxyId1 == pair2.proxyId1) in operator <()
114 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in Find()
124 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in AddPair()
140 pair->proxyId1 = (uint16)proxyId1; in AddPair()
158 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in RemovePair()
225 m_pairBuffer[m_pairBufferCount].proxyId1 = pair->proxyId1; in AddBufferedPair()
262 m_pairBuffer[m_pairBufferCount].proxyId1 = pair->proxyId1; in RemoveBufferedPair()
[all …]
H A Db2PairManager.h60 uint16 proxyId1; member
68 uint16 proxyId1; member
93 void AddBufferedPair(int32 proxyId1, int32 proxyId2);
94 void RemoveBufferedPair(int32 proxyId1, int32 proxyId2);
99 b2Pair* Find(int32 proxyId1, int32 proxyId2);
100 b2Pair* Find(int32 proxyId1, int32 proxyId2, uint32 hashValue);
102 b2Pair* AddPair(int32 proxyId1, int32 proxyId2);
103 void* RemovePair(int32 proxyId1, int32 proxyId2);
/dports/games/numptyphysics/numptyphysics/Box2D/Source/Collision/
H A Db2PairManager.cpp40 return pair.proxyId1 == proxyId1 && pair.proxyId2 == proxyId2; in Equals()
45 return pair1.proxyId1 == pair2.proxyId1 && pair1.proxyId2 == pair2.proxyId2; in Equals()
51 if (pair1.proxyId1 < pair2.proxyId1) in operator <()
56 if (pair1.proxyId1 == pair2.proxyId1) in operator <()
114 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in Find()
124 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in AddPair()
140 pair->proxyId1 = (uint16)proxyId1; in AddPair()
158 if (proxyId1 > proxyId2) b2Swap(proxyId1, proxyId2); in RemovePair()
225 m_pairBuffer[m_pairBufferCount].proxyId1 = pair->proxyId1; in AddBufferedPair()
262 m_pairBuffer[m_pairBufferCount].proxyId1 = pair->proxyId1; in RemoveBufferedPair()
[all …]
H A Db2PairManager.h60 uint16 proxyId1; member
68 uint16 proxyId1; member
93 void AddBufferedPair(int32 proxyId1, int32 proxyId2);
94 void RemoveBufferedPair(int32 proxyId1, int32 proxyId2);
99 b2Pair* Find(int32 proxyId1, int32 proxyId2);
100 b2Pair* Find(int32 proxyId1, int32 proxyId2, uint32 hashValue);
102 b2Pair* AddPair(int32 proxyId1, int32 proxyId2);
103 void* RemovePair(int32 proxyId1, int32 proxyId2);
/dports/devel/bullet/bullet3-3.21/src/Bullet3Collision/BroadPhaseCollision/
H A Db3OverlappingPairCache.h176 B3_FORCE_INLINE bool equalsPair(const b3BroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
178 return pair.x == proxyId1 && pair.y == proxyId2; in equalsPair()
197 B3_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
199 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) << 16)); in getHash()
213 int proxyId1 = proxy0; in internalFindPair() local
216 if (proxyId1 > proxyId2) in internalFindPair()
217 b3Swap(proxyId1, proxyId2); in internalFindPair()
222 …while (index != B3_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/devel/py-bullet3/bullet3-3.21/src/Bullet3Collision/BroadPhaseCollision/
H A Db3OverlappingPairCache.h176 B3_FORCE_INLINE bool equalsPair(const b3BroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
178 return pair.x == proxyId1 && pair.y == proxyId2; in equalsPair()
197 B3_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
199 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) << 16)); in getHash()
213 int proxyId1 = proxy0; in internalFindPair() local
216 if (proxyId1 > proxyId2) in internalFindPair()
217 b3Swap(proxyId1, proxyId2); in internalFindPair()
222 …while (index != B3_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/devel/godot/godot-3.2.3-stable/thirdparty/bullet/Bullet3Collision/BroadPhaseCollision/
H A Db3OverlappingPairCache.h176 B3_FORCE_INLINE bool equalsPair(const b3BroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
178 return pair.x == proxyId1 && pair.y == proxyId2; in equalsPair()
197 B3_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
199 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) << 16)); in getHash()
213 int proxyId1 = proxy0; in internalFindPair() local
216 if (proxyId1 > proxyId2) in internalFindPair()
217 b3Swap(proxyId1, proxyId2); in internalFindPair()
222 …while (index != B3_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/Bullet3Collision/BroadPhaseCollision/
H A Db3OverlappingPairCache.h176 B3_FORCE_INLINE bool equalsPair(const b3BroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
178 return pair.x == proxyId1 && pair.y == proxyId2; in equalsPair()
197 B3_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
199 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) << 16)); in getHash()
213 int proxyId1 = proxy0; in internalFindPair() local
216 if (proxyId1 > proxyId2) in internalFindPair()
217 b3Swap(proxyId1, proxyId2); in internalFindPair()
222 …while (index != B3_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/bullet/src/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.cpp141 int proxyId1 = proxy0->getUid(); in findPair() local
147 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1), static_cast<unsigned int>… in findPair()
155 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in findPair()
201 int proxyId1 = pair.m_pProxy0->getUid(); in growTables() local
205 …int hashValue = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned … in growTables()
218 int proxyId1 = proxy0->getUid(); in internalAddPair() local
224 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in internalAddPair()
255 …hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(prox… in internalAddPair()
278 int proxyId1 = proxy0->getUid(); in removeOverlappingPair() local
284 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in removeOverlappingPair()
[all …]
H A DbtOverlappingPairCache.h188 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
190 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in equalsPair()
211 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
213 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) <<16)); in getHash()
231 int proxyId1 = proxy0->getUid(); in internalFindPair() local
234 if (proxyId1 > proxyId2) in internalFindPair()
235 btSwap(proxyId1, proxyId2); in internalFindPair()
240 …while( index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/games/critterding/critterding-beta12/src/utils/bullet/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.cpp141 int proxyId1 = proxy0->getUid(); in findPair() local
147 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1), static_cast<unsigned int>… in findPair()
155 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in findPair()
201 int proxyId1 = pair.m_pProxy0->getUid(); in growTables() local
205 …int hashValue = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned … in growTables()
218 int proxyId1 = proxy0->getUid(); in internalAddPair() local
224 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in internalAddPair()
255 …hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(prox… in internalAddPair()
278 int proxyId1 = proxy0->getUid(); in removeOverlappingPair() local
284 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in removeOverlappingPair()
[all …]
H A DbtOverlappingPairCache.h188 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
190 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in equalsPair()
211 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
213 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) <<16)); in getHash()
231 int proxyId1 = proxy0->getUid(); in internalFindPair() local
234 if (proxyId1 > proxyId2) in internalFindPair()
235 btSwap(proxyId1, proxyId2); in internalFindPair()
240 …while( index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/Bullet/src/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.cpp140 int proxyId1 = proxy0->getUid(); in findPair() local
146 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1), static_cast<unsigned int>… in findPair()
154 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in findPair()
200 int proxyId1 = pair.m_pProxy0->getUid(); in growTables() local
204 …int hashValue = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned … in growTables()
217 int proxyId1 = proxy0->getUid(); in internalAddPair() local
223 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in internalAddPair()
254 …hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(prox… in internalAddPair()
277 int proxyId1 = proxy0->getUid(); in removeOverlappingPair() local
283 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in removeOverlappingPair()
[all …]
H A DbtOverlappingPairCache.h196 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in ATTRIBUTE_ALIGNED16()
198 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in ATTRIBUTE_ALIGNED16()
219 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in ATTRIBUTE_ALIGNED16()
221 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) <<16)); in ATTRIBUTE_ALIGNED16()
239 int proxyId1 = proxy0->getUid(); in ATTRIBUTE_ALIGNED16() local
242 if (proxyId1 > proxyId2) in ATTRIBUTE_ALIGNED16()
243 btSwap(proxyId1, proxyId2); in ATTRIBUTE_ALIGNED16()
248 …while( index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in ATTRIBUTE_ALIGNED16()
/dports/games/OpenTomb/OpenTomb-win32-2018-02-03_alpha/extern/bullet/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.cpp141 int proxyId1 = proxy0->getUid(); in findPair() local
147 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1), static_cast<unsigned int>… in findPair()
155 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in findPair()
201 int proxyId1 = pair.m_pProxy0->getUid(); in growTables() local
205 …int hashValue = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned … in growTables()
218 int proxyId1 = proxy0->getUid(); in internalAddPair() local
224 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in internalAddPair()
255 …hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(prox… in internalAddPair()
278 int proxyId1 = proxy0->getUid(); in removeOverlappingPair() local
284 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in removeOverlappingPair()
[all …]
H A DbtOverlappingPairCache.h194 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
196 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in equalsPair()
217 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
219 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) <<16)); in getHash()
237 int proxyId1 = proxy0->getUid(); in internalFindPair() local
240 if (proxyId1 > proxyId2) in internalFindPair()
241 btSwap(proxyId1, proxyId2); in internalFindPair()
246 …while( index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/bullet/src/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.cpp141 int proxyId1 = proxy0->getUid(); in findPair() local
147 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1), static_cast<unsigned int>… in findPair()
155 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in findPair()
201 int proxyId1 = pair.m_pProxy0->getUid(); in growTables() local
205 …int hashValue = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned … in growTables()
218 int proxyId1 = proxy0->getUid(); in internalAddPair() local
224 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in internalAddPair()
255 …hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(prox… in internalAddPair()
278 int proxyId1 = proxy0->getUid(); in removeOverlappingPair() local
284 …int hash = static_cast<int>(getHash(static_cast<unsigned int>(proxyId1),static_cast<unsigned int>(… in removeOverlappingPair()
[all …]
H A DbtOverlappingPairCache.h188 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in equalsPair() argument
190 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in equalsPair()
211 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in getHash() argument
213 int key = static_cast<int>(((unsigned int)proxyId1) | (((unsigned int)proxyId2) <<16)); in getHash()
231 int proxyId1 = proxy0->getUid(); in internalFindPair() local
234 if (proxyId1 > proxyId2) in internalFindPair()
235 btSwap(proxyId1, proxyId2); in internalFindPair()
240 …while( index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in internalFindPair()
/dports/devel/bullet/bullet3-3.21/src/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.h182 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in ATTRIBUTE_ALIGNED16()
184 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in ATTRIBUTE_ALIGNED16()
203 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in ATTRIBUTE_ALIGNED16()
205 unsigned int key = proxyId1 | (proxyId2 << 16); in ATTRIBUTE_ALIGNED16()
219 int proxyId1 = proxy0->getUid(); in ATTRIBUTE_ALIGNED16() local
222 if (proxyId1 > proxyId2) in ATTRIBUTE_ALIGNED16()
223 btSwap(proxyId1, proxyId2); in ATTRIBUTE_ALIGNED16()
228 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in ATTRIBUTE_ALIGNED16()
/dports/graphics/blender/blender-2.91.0/extern/bullet2/src/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.h182 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in ATTRIBUTE_ALIGNED16()
184 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in ATTRIBUTE_ALIGNED16()
203 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in ATTRIBUTE_ALIGNED16()
205 unsigned int key = proxyId1 | (proxyId2 << 16); in ATTRIBUTE_ALIGNED16()
219 int proxyId1 = proxy0->getUid(); in ATTRIBUTE_ALIGNED16() local
222 if (proxyId1 > proxyId2) in ATTRIBUTE_ALIGNED16()
223 btSwap(proxyId1, proxyId2); in ATTRIBUTE_ALIGNED16()
228 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in ATTRIBUTE_ALIGNED16()
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.h181 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in ATTRIBUTE_ALIGNED16()
183 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in ATTRIBUTE_ALIGNED16()
202 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in ATTRIBUTE_ALIGNED16()
204 unsigned int key = proxyId1 | (proxyId2 << 16); in ATTRIBUTE_ALIGNED16()
218 int proxyId1 = proxy0->getUid(); in ATTRIBUTE_ALIGNED16() local
221 if (proxyId1 > proxyId2) in ATTRIBUTE_ALIGNED16()
222 btSwap(proxyId1, proxyId2); in ATTRIBUTE_ALIGNED16()
227 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in ATTRIBUTE_ALIGNED16()
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/bullet/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.h181 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in ATTRIBUTE_ALIGNED16()
183 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in ATTRIBUTE_ALIGNED16()
202 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in ATTRIBUTE_ALIGNED16()
204 unsigned int key = proxyId1 | (proxyId2 << 16); in ATTRIBUTE_ALIGNED16()
218 int proxyId1 = proxy0->getUid(); in ATTRIBUTE_ALIGNED16() local
221 if (proxyId1 > proxyId2) in ATTRIBUTE_ALIGNED16()
222 btSwap(proxyId1, proxyId2); in ATTRIBUTE_ALIGNED16()
227 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in ATTRIBUTE_ALIGNED16()
/dports/devel/py-bullet3/bullet3-3.21/src/BulletCollision/BroadphaseCollision/
H A DbtOverlappingPairCache.h182 SIMD_FORCE_INLINE bool equalsPair(const btBroadphasePair& pair, int proxyId1, int proxyId2) in ATTRIBUTE_ALIGNED16()
184 return pair.m_pProxy0->getUid() == proxyId1 && pair.m_pProxy1->getUid() == proxyId2; in ATTRIBUTE_ALIGNED16()
203 SIMD_FORCE_INLINE unsigned int getHash(unsigned int proxyId1, unsigned int proxyId2) in ATTRIBUTE_ALIGNED16()
205 unsigned int key = proxyId1 | (proxyId2 << 16); in ATTRIBUTE_ALIGNED16()
219 int proxyId1 = proxy0->getUid(); in ATTRIBUTE_ALIGNED16() local
222 if (proxyId1 > proxyId2) in ATTRIBUTE_ALIGNED16()
223 btSwap(proxyId1, proxyId2); in ATTRIBUTE_ALIGNED16()
228 …while (index != BT_NULL_PAIR && equalsPair(m_overlappingPairArray[index], proxyId1, proxyId2) == f… in ATTRIBUTE_ALIGNED16()

12