Searched refs:readLowBits (Results 1 – 5 of 5) sorted by relevance
116 return reader.readLowBits(leastBitsToEncode((byte) range)); in decodeNormalizedSmallConstrainedWholeNumber()154 return reader.readLowBits(6) & 0xFF; in decodeNormallySmallWholeNumber()300 return reader.readLowBits(7); in decodeSemiConstrainedLength()302 return (reader.readLowBits(6) << 8) + (reader.readByte() & 0xFF); in decodeSemiConstrainedLength()
115 return reader.readLowBits(6) & 0xFF; in decodeNormallySmallWholeNumber()235 return reader.readLowBits(7); in decodeSemiConstrainedLength()237 return (reader.readLowBits(6) << 8) + (reader.readByte() & 0xFF); in decodeSemiConstrainedLength()
83 public int readLowBits(int howMany) { in readLowBits() method in BitStreamReader
262 exploded.put((byte) reader.readLowBits(characterBitCount)); in decodeValueCharacters()
312 extensionBitFieldSize = 1 + reader.readLowBits(6); in decodePerImpl()