| 143 | } |
| 144 | |
| 145 | PX_INLINE Ps::IntBool test(PxU32 index) const |
| 146 | { |
| 147 | PX_ASSERT(index<getWordCount()*32); |
| 148 | return Ps::IntBool(mMap[index>>5]&(1<<(index&31))); |
| 149 | } |
| 150 | |
| 151 | // nibble == 4 bits |
| 152 | PX_INLINE PxU32 getNibbleFast(PxU32 nibIndex) const |
nothing calls this directly
no test coverage detected