41 quint8 b0 =
static_cast<quint8
>(bits & 0xFFu);
43 return int(m_firstBitInByte[b0]);
46 quint8 b1 =
static_cast<quint8
>((bits >> 8) & 0xFFu);
48 return int(m_firstBitInByte[b1]) + 8;
51 quint8 b2 =
static_cast<quint8
>((bits >> 16) & 0xFFu);
53 return int(m_firstBitInByte[b2]) + 16;
56 quint8 b3 =
static_cast<quint8
>((bits >> 24) & 0xFFu);
58 return int(m_firstBitInByte[b3]) + 24;