HomeSort by relevance Sort by last modified time
    Searched refs:ClearCode (Results 1 - 5 of 5) sorted by null

  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 80 int ClearCode;
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/
gif_lib_private.h 35 ClearCode, /* The CLEAR LZ code. */
dgif_lib.c 39 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;
805 ClearCode = Private->ClearCode;
828 } else if (CrntCode == ClearCode) {
840 if (CrntCode < ClearCode) {
859 ClearCode);
864 ClearCode);
    [all...]
egif_lib.c 851 Private->ClearCode = (1 << BitsPerPixel);
852 Private->EOFCode = Private->ClearCode + 1;
863 if (EGifCompressOutput(GifFile, Private->ClearCode) == GIF_ERROR) {
920 if (EGifCompressOutput(GifFile, Private->ClearCode)
    [all...]
  /external/libjpeg-turbo/
wrgif.c 61 int ClearCode; /* clear code (doesn't change) */
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 509 milliseconds