| 204 | |
| 205 | |
| 206 | INLINE qindex insertBitsWithMaskedValues(qindex number, int* bitInds, int numBits, qindex mask) { |
| 207 | |
| 208 | // bitInds must be sorted (increasing), and mask must be zero everywhere except bitInds |
| 209 | return mask | insertBits(number, bitInds, numBits, 0); |
| 210 | } |
| 211 | |
| 212 | |
| 213 | INLINE int getTwoBits(qindex number, int highInd, int lowInd) { |
no test coverage detected