| 277 | } |
| 278 | |
| 279 | void cRawBitArray::SHIFT(const int num_bits, const int shift_size) |
| 280 | { |
| 281 | if (shift_size == 0) return; |
| 282 | if (shift_size > 0) { ShiftLeft(num_bits, shift_size); return; } |
| 283 | if (shift_size < 0) { ShiftRight(num_bits, -shift_size); return; } |
| 284 | assert(false); // Should never get here. |
| 285 | } |
| 286 | |
| 287 | void cRawBitArray::INCREMENT(const int num_bits) |
| 288 | { |