| 276 | |
| 277 | |
| 278 | INLINE int getIndOfNextLeftmostZeroBit(qindex mask, int bitInd) { |
| 279 | |
| 280 | bitInd--; |
| 281 | while (getBit(mask, bitInd)) |
| 282 | bitInd--; |
| 283 | |
| 284 | return bitInd; |
| 285 | } |
| 286 | |
| 287 | |
| 288 | INLINE int getIndOfNextRightmostZeroBit(qindex mask, int bitInd) { |
no test coverage detected