Searched refs:mRemainedBit (Results 1 – 2 of 2) sorted by relevance
385 private int mRemainedBit; field in GsmSmsCbMessage.BitStreamReader395 mRemainedBit = 8; in BitStreamReader()407 if (count >= mRemainedBit) { in read()408 val <<= mRemainedBit; in read() local409 val |= mData[mCurrentOffset] & ((1 << mRemainedBit) - 1); in read()410 count -= mRemainedBit; in read()411 mRemainedBit = 8; in read()415 val |= (mData[mCurrentOffset] & ((1 << mRemainedBit) - 1)) in read()416 >> (mRemainedBit - count); in read()417 mRemainedBit -= count; in read()[all …]
441 private int mRemainedBit; field in GsmSmsCbMessage.BitStreamReader451 mRemainedBit = 8; in BitStreamReader()463 if (count >= mRemainedBit) { in read()464 val <<= mRemainedBit; in read() local465 val |= mData[mCurrentOffset] & ((1 << mRemainedBit) - 1); in read()466 count -= mRemainedBit; in read()467 mRemainedBit = 8; in read()471 val |= (mData[mCurrentOffset] & ((1 << mRemainedBit) - 1)) in read()472 >> (mRemainedBit - count); in read()473 mRemainedBit -= count; in read()[all …]