Searched refs:nextBits (Results 1 - 2 of 2) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in class:TIFFLZWUtil
62 this.nextBits = 0;
211 nextBits += 8;
213 if (nextBits < bitsToGet) {
215 nextBits += 8;
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9];
220 nextBits -= bitsToGet;
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in class:TIFFLZWDecompressor
146 this.nextBits = 0;
287 nextBits += 8;
289 if (nextBits < bitsToGet) {
291 nextBits += 8;
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9];
296 nextBits -= bitsToGet;

Completed in 124 milliseconds