− | To convert the bit number to the offset and bit: <code>offset = start_offset + (bit_num / 32) * 4</code>, <code>bit = (bit_num % 32) << 1</code> | + | To convert the bit number to the offset and bit: <code>offset = start_offset + (bit_num / 32) * 4</code>, <code>bit = 1 << (bit_num % 32)</code> |