| 113 | PX_INLINE Allocator& getAllocator() { return mAllocator; } |
| 114 | |
| 115 | PX_INLINE void growAndSet(PxU32 index) |
| 116 | { |
| 117 | extend(index+1); |
| 118 | mMap[index>>5] |= 1<<(index&31); |
| 119 | } |
| 120 | |
| 121 | PX_INLINE void growAndReset(PxU32 index) |
| 122 | { |
no test coverage detected