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

  /external/giflib/
gif_lib_private.h 41 CrntCode, /* Current algorithm code. */
dgif_lib.c 805 int j, CrntCode, EOFCode, ClearCode, CrntPrefix, LastCode, StackPtr;
829 if (DGifDecompressInput(GifFile, &CrntCode) == GIF_ERROR)
832 if (CrntCode == EOFCode) {
838 } else if (CrntCode == ClearCode) {
850 if (CrntCode < ClearCode) {
852 Line[i++] = CrntCode;
858 if (Prefix[CrntCode] == NO_SUCH_CODE) {
861 /* Only allowed if CrntCode is exactly the running code:
862 * In that case CrntCode = XXXCode, CrntCode or th
    [all...]
egif_lib.c 860 Private->CrntCode = FIRST_CODE; /* Signal that this is first one! */
885 int i = 0, CrntCode, NewCode;
893 if (Private->CrntCode == FIRST_CODE) /* Its first time! */
894 CrntCode = Line[i++];
896 CrntCode = Private->CrntCode; /* Get last code in compression. */
901 * CrntCode as Prefix string with Pixel as postfix char.
903 NewKey = (((uint32_t) CrntCode) << 8) + Pixel;
906 * simple take new code as our CrntCode:
908 CrntCode = NewCode
    [all...]

Completed in 60 milliseconds