Lines Matching refs:CrntCode
853 Private->CrntCode = FIRST_CODE; /* Signal that this is first one! */ in EGifSetupCompress()
878 int i = 0, CrntCode, NewCode; in EGifCompressLine() local
886 if (Private->CrntCode == FIRST_CODE) /* Its first time! */ in EGifCompressLine()
887 CrntCode = Line[i++]; in EGifCompressLine()
889 CrntCode = Private->CrntCode; /* Get last code in compression. */ in EGifCompressLine()
896 NewKey = (((uint32_t) CrntCode) << 8) + Pixel; in EGifCompressLine()
901 CrntCode = NewCode; in EGifCompressLine()
906 if (EGifCompressOutput(GifFile, CrntCode) == GIF_ERROR) { in EGifCompressLine()
910 CrntCode = Pixel; in EGifCompressLine()
935 Private->CrntCode = CrntCode; in EGifCompressLine()
939 if (EGifCompressOutput(GifFile, CrntCode) == GIF_ERROR) { in EGifCompressLine()