Home | History | Annotate | Download | only in lib_src

Lines Matching refs:bitsLeft

992     EAS_I32 bitsLeft;
998 bitsLeft = pData->current.bitCount - numBits;
1001 if (bitsLeft < 0)
1006 value = pData->current.dataByte << -bitsLeft;
1011 bitsLeft += 8;
1015 if (bitsLeft > 0)
1017 value |= pData->current.dataByte >> bitsLeft;
1018 pData->current.bitCount = (EAS_U8) bitsLeft;
1019 pData->current.dataByte = pData->current.dataByte & (0xff >> (8 - bitsLeft));