Searched refs:ClearCode (Results 1 - 5 of 5) sorted by relevance

/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DLZWEncoder.java80 int ClearCode; field in class:LZWEncoder
133 free_ent = ClearCode + 2;
136 output(ClearCode, outs);
162 ClearCode = 1 << (init_bits - 1);
163 EOFCode = ClearCode + 1;
164 free_ent = ClearCode + 2;
178 output(ClearCode, outs);
/external/giflib/
H A Dgif_lib_private.h35 ClearCode, /* The CLEAR LZ code. */ member in struct:GifFilePrivateType
H A Ddgif_lib.c39 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
768 Private->ClearCode = (1 << BitsPerPixel);
769 Private->EOFCode = Private->ClearCode + 1;
795 int j, CrntCode, EOFCode, ClearCode, CrntPrefix, LastCode, StackPtr; local
805 ClearCode = Private->ClearCode;
828 } else if (CrntCode == ClearCode) {
840 if (CrntCode < ClearCode) {
859 ClearCode);
864 ClearCode);
921 DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode) argument
[all...]
H A Degif_lib.c851 Private->ClearCode = (1 << BitsPerPixel);
852 Private->EOFCode = Private->ClearCode + 1;
863 if (EGifCompressOutput(GifFile, Private->ClearCode) == GIF_ERROR) {
920 if (EGifCompressOutput(GifFile, Private->ClearCode)
/external/libjpeg-turbo/
H A Dwrgif.c61 int ClearCode; /* clear code (doesn't change) */ member in struct:__anon10173
151 dinfo->ClearCode = (1 << (i_bits - 1));
152 dinfo->EOFCode = dinfo->ClearCode + 1;
153 dinfo->code_counter = dinfo->ClearCode + 2;
159 output(dinfo, dinfo->ClearCode);
177 output(dinfo, dinfo->ClearCode);
178 dinfo->code_counter = dinfo->ClearCode + 2; /* reset the counter */

Completed in 120 milliseconds