Searched refs:bitsToGet (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java41 int tableIndex, bitsToGet = 9; field in class:TIFFLZWUtil
131 bitsToGet = 9;
166 bitsToGet = 10;
168 bitsToGet = 11;
170 bitsToGet = 12;
182 bitsToGet = 10;
184 bitsToGet = 11;
186 bitsToGet = 12;
213 if (nextBits < bitsToGet) {
219 (nextData >> (nextBits - bitsToGet))
[all...]
H A DTIFFLZWDecompressor.java57 private int tableIndex, bitsToGet = 9; field in class:TIFFLZWDecompressor
212 bitsToGet = 9;
242 bitsToGet = 10;
244 bitsToGet = 11;
246 bitsToGet = 12;
258 bitsToGet = 10;
260 bitsToGet = 11;
262 bitsToGet = 12;
289 if (nextBits < bitsToGet) {
295 (nextData >> (nextBits - bitsToGet))
[all...]
H A DTIFFFaxDecompressor.java1458 private int nextNBits(int bitsToGet) throws IIOException { argument
1494 int bitsFromNextByte = bitsToGet - bitsLeft;
1503 int i1 = (b & table1[bitsLeft]) << (bitsToGet - bitsLeft);
1527 private int nextLesserThan8Bits(int bitsToGet) throws IIOException { argument
1551 int bitsFromNextByte = bitsToGet - bitsLeft;
1553 int shift = bitsLeft - bitsToGet;
1557 bitPointer += bitsToGet;

Completed in 88 milliseconds