Lines Matching refs:CrntCode
856 Private->CrntCode = FIRST_CODE; /* Signal that this is first one! */ in EGifSetupCompress()
881 int i = 0, CrntCode, NewCode; in EGifCompressLine() local
889 if (Private->CrntCode == FIRST_CODE) /* Its first time! */ in EGifCompressLine()
890 CrntCode = Line[i++]; in EGifCompressLine()
892 CrntCode = Private->CrntCode; /* Get last code in compression. */ in EGifCompressLine()
899 NewKey = (((uint32_t) CrntCode) << 8) + Pixel; in EGifCompressLine()
904 CrntCode = NewCode; in EGifCompressLine()
909 if (EGifCompressOutput(GifFile, CrntCode) == GIF_ERROR) { in EGifCompressLine()
913 CrntCode = Pixel; in EGifCompressLine()
938 Private->CrntCode = CrntCode; in EGifCompressLine()
942 if (EGifCompressOutput(GifFile, CrntCode) == GIF_ERROR) { in EGifCompressLine()