| 286 | |
| 287 | |
| 288 | INLINE int getIndOfNextRightmostZeroBit(qindex mask, int bitInd) { |
| 289 | |
| 290 | bitInd++; |
| 291 | while (getBit(mask, bitInd)) |
| 292 | bitInd++; |
| 293 | |
| 294 | return bitInd; |
| 295 | } |
| 296 | |
| 297 | |
| 298 | INLINE bool allBitsAreOne(qindex number, int* bitIndices, int numIndices) { |
no test coverage detected