Lines Matching refs:LSB
534 uint32_t consumeBits(uint32_t MSB, uint32_t LSB) in consumeBits()
536 bool reversed = MSB < LSB; in consumeBits()
539 std::swap(MSB, LSB); in consumeBits()
541 ASSERT(MSB - LSB + 1 < sizeof(uint32_t) * 8); in consumeBits()
543 uint32_t numBits = MSB - LSB + 1; in consumeBits()
566 return bits << LSB; in consumeBits()
700 int LSB; member
705 BlockDesc(DataType type, Channel channel, int MSB, int LSB, ModeDesc modeDesc) in BlockDesc()
709 , LSB(LSB) in BlockDesc()
714 BlockDesc(DataType type, Channel channel, int MSB, int LSB) in BlockDesc()
718 , LSB(LSB) in BlockDesc()
971 partition |= data.consumeBits(desc.MSB, desc.LSB); in decode()
977 e[desc.type].channel[desc.channel] |= data.consumeBits(desc.MSB, desc.LSB); in decode()