MCPcopy
hub / github.com/google/brotli / readManyBits

Method readManyBits

java/org/brotli/dec/BitReader.java:170–174  ·  view source on GitHub ↗
(State s, int n)

Source from the content-addressed store, hash-verified

168 }
169
170 private static int readManyBits(State s, int n) {
171 final int low = readFewBits(s, 16);
172 doFillBitWindow(s);
173 return low | (readFewBits(s, n - 16) << 16);
174 }
175
176 static int initBitReader(State s) {
177 s.byteBuffer = new byte[BUFFER_SIZE];

Callers 1

readBitsMethod · 0.95

Calls 2

readFewBitsMethod · 0.95
doFillBitWindowMethod · 0.95

Tested by

no test coverage detected