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

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java41 int clearCode; field in class:LZWCompressor
76 clearCode = 1 << codeSize;
77 endOfInfo = clearCode + 1;
88 bf.writeBits(clearCode, numBits);
111 bf.writeBits(clearCode, numBits);
/openjdk7/jdk/src/share/native/sun/awt/image/gif/
H A Dgifdecoder.c151 int clearCode = (1 << initCodeSize); local
152 int eofCode = clearCode + 1;
168 int freeCode = clearCode + 2;
219 bitMask = clearCode - 1;
289 if (code == clearCode) {
301 freeCode = clearCode + 1;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java89 int clearCode; field in class:GIFImageReader
907 this.clearCode = 1 << initCodeSize;
908 this.eofCode = clearCode + 1;
926 if (code == clearCode) {

Completed in 32 milliseconds